Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. <html>
  2. <head>
  3. <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
  4. <link href="static/css/stuff.css" type="text/css" rel="stylesheet">
  5. <script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
  6. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
  7. </head>
  8. <body style="background-image: url('static/img/background.jpg')">
  9. <% include header.html.ejs %>
  10. <div style="text-align: center">
  11. <img src="static/img/logo.png" style="width: 16%">
  12. </div>
  13. <form class="form-signin" action='/' method='POST'>
  14. <div class="container" style="width: 50%">
  15. <h1 class="form-signin-heading">Please sign in</h1>
  16. <label for="username" class="sr-only">Username</label>
  17. <input type="text" id="username" name="username" class="form-control" placeholder="Username" required autofocus>
  18. <label for="password" class="sr-only">Password</label>
  19. <input type="password" id="password" name="password" class="form-control" placeholder="Password" required>
  20. <p>You are new ? Click <a href="/create" style="color: crimson">here</a>. Forgot your password ? It's <a href="#" style="color: crimson">here</a>.</p>
  21. <BR/>
  22. <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
  23. </div>
  24. </form>
  25. <% include footer.html.ejs %>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement