mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
16 lines
375 B
HTML
16 lines
375 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Create Application{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>Select the character you wish to apply with, then the corporation you wish to apply for.</p>
|
|
|
|
<form action="{% url hr.views.add_application %}" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<input type="submit" value="Apply" />
|
|
</form>
|
|
{% endblock %}
|