54 lines
1.8 KiB
HTML
54 lines
1.8 KiB
HTML
{% extends "registration/registration_base.html" %}
|
|
{% load i18n %}{% load bootstrap %}
|
|
{% load bootstrap %}
|
|
{% block title %}{% trans "Register for an account" %}{% endblock %}
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<h2>No registration required for testing</h2>
|
|
<p>
|
|
You can easily test the service and see what you get.
|
|
</p>
|
|
<p>
|
|
Just directly log in as:
|
|
</p>
|
|
<ul>
|
|
<li>username: test</li>
|
|
<li>password: test</li>
|
|
</ul>
|
|
<p>
|
|
<b>Note:</b> if that doesn't work, the service administrator did not set up
|
|
the test account yet or discontinued offering it. In that case, you can
|
|
still just register a new account.
|
|
</p>
|
|
<h2>test account is <b>only</b> for testing</h2>
|
|
<p>
|
|
Any data (hosts, domains, ...) entered using the test account might be removed
|
|
at any time and without prior notice.
|
|
</p>
|
|
<p>
|
|
So if you'ld like your stuff to stay, please register for a regular account after
|
|
finishing your initial evaluation.
|
|
</p>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<h2>Register new account</h2>
|
|
<p>
|
|
Username: should be related to your <em>person or organisation</em>
|
|
(not: to the host(s) you want to register).<br>
|
|
E-Mail address: must be a <em>working</em> one, we'll send you an activation E-Mail there.<br>
|
|
Password: please use a sane one, we trust you.
|
|
</p>
|
|
<form class="form-horizontal" role="form" method="post" action="">
|
|
{% csrf_token %}
|
|
{{ form|bootstrap_horizontal }}
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-2 col-sm-10">
|
|
<input type="submit" class="btn btn-primary" value="{% trans "Send activation email" %}" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|