mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-24 15:19:30 +00:00
22 lines
618 B
HTML
22 lines
618 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Change your Primay Character{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="page-header">
|
|
<h1>Change Your Primary Character</h1>
|
|
</div>
|
|
|
|
<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">
|
|
<fieldset>
|
|
{% include "formtools/formerror.html" %}
|
|
{% include "formtools/formfield.html" with field=form.character %}
|
|
{% csrf_token %}
|
|
<input type="submit" value="Change" class="btn primary" />
|
|
</fieldset>
|
|
</form>
|
|
|
|
{% endblock %}
|