Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Factorio login</title>
  4. </head>
  5. <body>
  6. {% with messages = get_flashed_messages() %}
  7. {% if messages %}
  8. <ul class="flashes">
  9. {% for message in messages %}
  10. <li>{{ message }}</li>
  11. {% endfor %}
  12. </ul>
  13. {% endif %}
  14. {% endwith %}
  15. <form action="/login/process" method="POST">
  16. Username: <input type="text" name="username">
  17. Password: <input type="password" name="password">
  18. <input type="submit" value="Log In" />
  19.  
  20. <input type="hidden" name="redirect" value="{{ redirect }}">
  21. <input type="hidden" name="service" value="{{ service }}">
  22. <input type="hidden" name="csrf-token" value="{{ csrf_token }}">
  23.  
  24. </form>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement