SOITA/templates/changeName.html

17 lines
625 B
HTML
Raw Normal View History

2022-01-13 23:24:24 +01:00
{% extends "base.html" %}
2022-01-25 18:17:58 +01:00
{% block title %}Zaktualizuj imię{% endblock %}
2022-01-13 23:24:24 +01:00
{% block content %}
<div class="accountInfoContainer ">
<form method="post">
2022-01-25 18:17:58 +01:00
<input type="text" id="firstName" name="firstName" class="form-control" placeholder="Imię" required><br><br>
<input type="text" id="lastName" name="lastName" class="form-control" placeholder="Nazwisko" required><br><br>
<input type="submit" value="Zaktualizuj imię"><br><br>
2022-01-13 23:24:24 +01:00
</form>
2022-01-23 17:10:05 +01:00
<div class="linkDefault">
2022-01-25 18:17:58 +01:00
<a href="{% url 'account' %}">Wróć</a>
2022-01-23 17:10:05 +01:00
</div>
2022-01-13 23:24:24 +01:00
</div>
{% endblock %}