VideoCredit

Artifact [278d0058e5]
Login

Artifact 278d0058e5e2b0be1c1aa09659ac6110d84b772e:


{% extends "layout.html" %}
{% block title %}Register New Account{% endblock %}
{% block body %}

<script src='https://www.google.com/recaptcha/api.js'></script>

		<form method="POST" action="/registration" enctype="multipart/form-data" name="Reg">
			<table>
				<tr>
					<td>Name:</td>
					<td><input type="text" name="username" id="username"></td>
				</tr>
				<tr>
					<td>Password:</td>
					<td><input type="password" name="password" id="password"></td>
				</tr>
				<tr>
					<td>Password again:</td>
					<td><input type="password" name="password2" id="password2"></td>
				</tr>
				<tr>
					<td>E-mail:</td>
					<td><input type="email" name="email" id="email"></td>
				</tr>
                <tr>
					<td colspan="2">
                        <div class="g-recaptcha" data-sitekey="{{data_sitekey}}"></div>
                    </td>
				</tr>
				<tr>
					<td></td>
					<td><input type="Submit" name="buttonSubmit" value="Send" id="buttonSubmit"></td>
				</tr>
			</table>
		</form>
		<a href="/login">Login</a>

{% endblock %}