A website for producing interactive charts without writing a single line of code. Built with Common Lisp and Python. https://charts.craigoates.net
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
918 B

{% extends "layouts/base.html" %}
{% block title %}Create your account and start turning your spreadsheets into interactive charts.{% endblock %}
{% block content %}
<h1>Create Account</h1>
<div class="ui-form">
<form class="ui-form-add" action="/sign-up" method="post">
<input required type="hidden" name="AUTHENTICITY-TOKEN" value="{{token}}">
<input required type="hidden" name="METHOD" value="sign-up-user">
<fieldset>
<legend>Account Details</legend>
<label>Username <em>(Cannot change after account created.)</em></label>
<input required type="text" name="USERNAME">
<label>Display Name</label>
<input required type="text" name="DISPLAY-NAME">
<label>Password</label>
<input required type="password" name="PASSWORD">
</fieldset>
<input class="ui-button-add" type="submit" value="Create Account"/>
</form>
</div>
{% endblock %}