mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
8f57aa5f37
Redoes the UI to remove timelines, promote domains, and a lot of other things to support the refactor.
27 lines
932 B
HTML
27 lines
932 B
HTML
{% extends "settings/base.html" %}
|
|
|
|
{% block subtitle %}Add App{% endblock %}
|
|
|
|
{% block settings_content %}
|
|
<form action="." method="POST">
|
|
<h1>Create Personal Token</h1>
|
|
<p>
|
|
This lets you create a personal application token that you can
|
|
use to talk to the API.
|
|
</p>
|
|
<p>
|
|
<b>Do not create a token if someone else tells you to - it can let
|
|
them take over your account!</b>
|
|
</p>
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>App Details</legend>
|
|
{% include "forms/_field.html" with field=form.name %}
|
|
{% include "forms/_field.html" with field=form.scope %}
|
|
</fieldset>
|
|
<div class="buttons">
|
|
<a href="{% url "settings_tokens" handle=identity.handle %}" class="button secondary left">Back</a>
|
|
<button>Create</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|