mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 14:14:18 +00:00
bca9bf9b11
* Replace flexbox grid with CSS grid * Update new and edit forms * Update settings views * Update auth views * Fix margin in menu * Remove unused Spectre modules * Simplify navbar * Reuse CSS variables * Fix grid gap on small screen sizes * Simplify grid system * Improve section headers * Restructure SASS files * Cleanup base styles * Update test
38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
{% extends 'bookmarks/layout.html' %}
|
|
{% load widget_tweaks %}
|
|
|
|
{% block title %}Login{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="content-area mx-auto width-50 width-md-100">
|
|
<div class="content-area-header">
|
|
<h2>Login</h2>
|
|
</div>
|
|
<form method="post" action="{% url 'login' %}">
|
|
{% csrf_token %}
|
|
{% if form.errors %}
|
|
<div class="form-group has-error">
|
|
<p class="form-input-hint">Your username and password didn't match. Please try again.</p>
|
|
</div>
|
|
{% endif %}
|
|
<div class="form-group">
|
|
<label class="form-label" for="{{ form.username.id_for_label }}">Username</label>
|
|
{{ form.username|add_class:'form-input'|attr:"placeholder: " }}
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="form-label" for="{{ form.password.id_for_label }}">Password</label>
|
|
{{ form.password|add_class:'form-input'|attr:"placeholder: " }}
|
|
</div>
|
|
|
|
<br/>
|
|
<div class="d-flex justify-between">
|
|
<input type="submit" value="Login" class="btn btn-primary btn-wide">
|
|
<input type="hidden" name="next" value="{{ next }}">
|
|
{% if allow_registration %}
|
|
<a href="{% url 'django_registration_register' %}" class="btn btn-link">Register</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|