ungleich-user/dal/dal/templates/landing.html

38 lines
933 B
HTML
Raw Normal View History

2018-11-10 12:10:17 +00:00
{% extends "base.html" %}
{% load staticfiles %}
{% block content %}
<div class="auth_container">
<div class="auth_bg"></div>
<div class="auth_center">
<div class="auth_content">
<div class="auth-box">
<h2 class="section-heading"> Log in </h2>
<form action={% url 'index' %} method="post"> <!-- class="form" nonvalidated>-->
{% csrf_token %}
<br>Username:<br><input type="text" name="username" id="username">
<br>Password:<br><input type="password" name="password" id="password">
<div class="text-center">
<button type="submit" class="btn choice-btn"> Log in </button>
</div>
</form>
<div class="auth-footer">
<div>
Don't have an account yet?&nbsp;
<a href={% url 'register' %}> Sign up </a>
</div>
<div>
or <a href={% url 'reset_password' %}> Reset your password </a>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}