diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-18 17:52:10 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-18 18:42:26 -0700 |
commit | a4ea1a0e13b1b8016bbfaa0f0fbf983f0abdd5a5 (patch) | |
tree | 6bec961533bb2d1c09dfb203413b2d75d01875ce /python/fatcat_web/templates/auth_account.html | |
parent | 9d1e2ef1c1682f49ce666a012fad70d50cb4f376 (diff) | |
download | fatcat-a4ea1a0e13b1b8016bbfaa0f0fbf983f0abdd5a5.tar.gz fatcat-a4ea1a0e13b1b8016bbfaa0f0fbf983f0abdd5a5.zip |
python webface impl token generation
Diffstat (limited to 'python/fatcat_web/templates/auth_account.html')
-rw-r--r-- | python/fatcat_web/templates/auth_account.html | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/auth_account.html b/python/fatcat_web/templates/auth_account.html index 4faeb48f..4a51241a 100644 --- a/python/fatcat_web/templates/auth_account.html +++ b/python/fatcat_web/templates/auth_account.html @@ -26,11 +26,24 @@ </form> </div> +<div class="ui segment"> +<h3 class="ui header">Create API Token</h3> +<form class="" role="change_username" action="/auth/create_token" method="post"> + <input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/> + <div class="ui form"> + <button class="ui green button" style="float: right;">Create Token</button> + <div class="field" style="width: 20em; clear: unset;"> + <input type="text" name="duration_seconds" id="duration_seconds" aria-label="token valid duration (seconds)" placeholder="default 31 days"> + <label for="duration_seconds">Token Validity Duration (seconds; optional)</label> + </div> + </div> +</form> +</div> + <br> <p>In the future, you will be able to... <ul> <li>Create and manage bot accounts - <li>Generate API tokens </ul> {% endblock %} |