Files
test-auth/app/sso/templates/sso/primarycharchange.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 %}