HTMLify
login.html
Views: 511 | Author: abh
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | <!DOCTYPE html> <html> <head> <title>Login</title> {% include "stylesheet.html" %} <style> </style> </head> <body> <h1>HTMLify</h1> {% include "search-bar.html" %} {% include "nav-bar.html" %} <div class="login-form"> <h1>Login</h1> {% if error %} <div class="error-msg"> {{ error }} </div> {% endif %} <form action="/action/login" method="POST"> <input type="text" name="username" placeholder="Username" required /><br> <input type="password" name="password" placeholder="Password" required /><br> <input type="hidden" name="token" value="{{ token }}"> <input type="submit" value="Login" /> </form> </div> </body> </html> |