Initial commit after extraction

This commit is contained in:
Ryan McGrath 2018-07-20 15:42:02 -07:00
commit 80ba54e4ef
No known key found for this signature in database
GPG key ID: 811674B62B666830
43 changed files with 3865 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{% extends "layout.html" %}
{% block title %}Signup{% endblock %}
{% block head %}{% endblock %}
{% block content %}
{% match errors %}
{% when Some with (errs) %}
<ul>
{% for e in errs %}
<li>{{ e }}</li>
{% endfor %}
</ul>
{% when None %}
{% endmatch %}
<form method="POST" action="/users/signup/">
<input type="text" name="email">
<input type="password" name="password">
<input type="submit" value="Go">
</form>
{% endblock %}