This repository has been archived on 2022-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
microservices/forum/templates/login.html

10 lines
385 B
HTML

<div id="login-box">
<div class="items">
<h1>Log In</h1>
<form action="/login/" method="post"> {% csrf_token %}
<input type="text" name="username" placeholder="Username" />
<input type="password" name="password" placeholder="Password" />
<input type="submit" name="signup_submit" value="Log In" />
</div>
</div>
{% endblock %}