mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
60 lines
2.2 KiB
HTML
60 lines
2.2 KiB
HTML
{% extends request.is_ajax|yesno:'base_ajax.html,base_rigs.html' %}
|
|
{% load widget_tweaks %}
|
|
|
|
{% block title %}Request Authorisation{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="alert alert-warning">
|
|
<h1>Send authorisation request email.</h1>
|
|
<p>Pressing send will email the address provided. Please triple check everything before continuing.</p>
|
|
</div>
|
|
|
|
<div class="alert alert-info">
|
|
<dl class="dl-horizontal">
|
|
<dt>Person Email</dt>
|
|
<dd>{{ object.person.email }}</dd>
|
|
|
|
<dt>Organisation Email</dt>
|
|
<dd>{{ object.organisation.email }}</dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-12 col-md-10 col-md-offset-1">
|
|
<form action="{{ form.action|default:request.path }}" method="post" class="form-horizontal"
|
|
id="auth-request-form">
|
|
{% csrf_token %}
|
|
|
|
<div class="row">
|
|
{% include 'form_errors.html' %}
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label"
|
|
for="{{ form.email.id_for_label }}">{{ form.email.label }}</label>
|
|
|
|
<div class="col-sm-9">
|
|
{% render_field form.email type="email" class+="form-control" %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="text-right col-sm-3 col-sm-offset-9">
|
|
<div class="form-group">
|
|
<button type="submit" class="form-control btn btn-primary">
|
|
<span class="glyphicon glyphicon-send"></span>
|
|
Send
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$('#auth-request-form').on('submit', function () {
|
|
$('#auth-request-form button').attr('disabled', true);
|
|
});
|
|
</script>
|
|
{% endblock %}
|