join.html 1.03 KB
<!DOCTYPE html>

<html lang="en">
<head>
    <meta charset=utf-8">
    <title>Join</title>
    <link rel="stylesheet" href="css/bootstrap.css">
    <link rel="stylesheet" href="css/site.css">
</head>
<body>
    <div class="navigation_index">
        <a href='/join'>
            <button type="button" class="btn btn-success">Join</button></a>
        <a href='/'>
            <button type="button" class="btn btn-success">Index</button></a>
</div>
    <div class="contents_index">
    <form method="POST" action="/join">
        <label>id:</label><input type="text" name="id"><br/>
        <label>pwd:</label><input type="password" name="pwd"><br/>
        <label>name:</label><input type="text" name="name"><br/>
    </form>
        <button type="submit" class="btn btn-info">Join</button>
    <a href='/'><button type="button"class="btn btn-danger">Cancel</button></a>
</div>
    <script src="http://ajax.googleapis.com/ajaz/libs/jquery/1.12.4/jquery.min.js"></script>
    <script type="text/javascript" src="js/bootstrap.js"></script>
</body>
</html>