mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-24 15:19:30 +00:00
20 lines
470 B
HTML
20 lines
470 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Change your Primay Character{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Change Your Primary Character</h1>
|
|
|
|
<p>Your primary character is used across auth services to show as your display name and corporation. Please set this to which character you consider your "main".</p>
|
|
|
|
<form action="" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<br />
|
|
{% csrf_token %}
|
|
<input type="submit" value="Change" />
|
|
</form>
|
|
|
|
{% endblock %}
|