index.html 903 Bytes
<!DOCTYPE html>

<html lang="en">
<head>
    <meta charset=utf-8">
    <title>Index</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="/login">
        <label>id:</label><input type="text" name="id"><br/>
        <label>pwd:</label><input type="password" name="pwd"><br/>
        <button type="submit" class="btn btn-info">Login</button>
    </form>
</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>