added styles to pages
This commit is contained in:
parent
5cc22c0965
commit
163d977bc2
18 changed files with 545 additions and 208 deletions
|
|
@ -1,14 +1,29 @@
|
|||
<title> Userdata changed. </title>
|
||||
{% extends "base_short.html" %}
|
||||
{% load i18n staticfiles bootstrap3 %}
|
||||
|
||||
<h2> The data for {{user}} has been changed. </h2>
|
||||
<br><br>
|
||||
<ul>
|
||||
<li> Username: {{user}} </li>
|
||||
<li> Firstname: {{firstname}} </li>
|
||||
<li> Lastname: {{lastname}} </li>
|
||||
<li> Email: {{email}} </li>
|
||||
</ul>
|
||||
<br><br>
|
||||
<form action={% url 'index' %} method="get">
|
||||
<input type="submit" value="Back to indexpage">
|
||||
</form>
|
||||
{% block title %}
|
||||
<title> Success! </title>
|
||||
{% endblock %}
|
||||
|
||||
|
||||
|
||||
{% block content %}
|
||||
<div class="auth-container">
|
||||
<div class="auth-bg"></div>
|
||||
<div class="auth-center">
|
||||
<div class="auth-content">
|
||||
<div class="auth-box">
|
||||
<h1 class="section-heading allcaps">{% trans " Data successfully updated." %}</h1>
|
||||
<form action="{% url 'index' %}" method="get" class="form" novalidated>
|
||||
<hr>
|
||||
<div class="text-center">
|
||||
<button type="submit" class="btn choice-btn btn-block">
|
||||
{% trans "Back to indexpage" %}
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue