This repository has been archived on 2021-01-16. You can view files and clone it, but cannot push or open issues/pull-requests.
2019-09-28 21:43:25 -05:00
|
|
|
{% extends "base.njk" %}
|
|
|
|
{% block content %}
|
|
|
|
<div id="jscontainer" style="height: 100%;">
|
|
|
|
<div id="jschild" style="width: 50%;height: 100%;text-align: left;margin: 20px;">
|
2019-10-05 14:34:57 -05:00
|
|
|
<form action="/api/register" method="POST" target="responseFrame">
|
2019-09-28 21:43:25 -05:00
|
|
|
Username: </br><input type="text" name="username" style="min-width: 300px" placeholder="e.g. lain"/></br>
|
|
|
|
Password: </br><input type="password" name="password" style="min-width: 300px"/></br>
|
2019-10-05 14:34:57 -05:00
|
|
|
Confirm: </br><input type="password" name="confirm" style="min-width: 300px"/></br>
|
2019-09-28 21:43:25 -05:00
|
|
|
<input type="submit" value="Submit">
|
|
|
|
</form>
|
2019-10-05 14:34:57 -05:00
|
|
|
<iframe name="responseFrame" border="0" frameborder="0" style="display: inline;"></iframe>
|
2019-09-28 21:43:25 -05:00
|
|
|
</div>
|
|
|
|
<div id="jschild" style="width: 50%;height: 100%;text-align: left;margin: 20px;">
|
|
|
|
{% include "tos.html" %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|