[ee46bc]: / Allura / allura / templates / phone_verification_fragment.html  Maximize  Restore  History

Download this file

92 lines (87 with data), 3.8 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{#-
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-#}
<!DOCTYPE html>
<!-- Server: {{g.server_name}} -->
{% import 'allura:templates/jinja_master/lib.html' as lib with context %}
{% if g.theme.jinja_macros %}
{% import g.theme.jinja_macros as theme_macros with context %}
{% endif %}
{% do lib.register_react_js_files(location='head_js') %}
{% do g.register_forge_js('js/jquery-3.6.0.min.js', location='head_js') %}
{% do g.register_forge_js('js/jquery.cookie-1.4.1.js', location='head_js') %}
{% do g.register_forge_js('js/phone-verification.js', location='body_js_tail') %}
{% do g.theme.require() %}
{% do g.resource_manager.register_widgets(c) %}
<html lang="en" class="no-js">
<head>
{{theme_macros.extra_header(g.theme_href(''))}}
{% for blob in g.resource_manager.emit('head_css') %}
{{ blob }}
{% endfor %}
{% for blob in g.resource_manager.emit('head_js') %}
{{ blob }}
{% endfor %}
<style type="text/css">
html { overflow: hidden; }
body { padding-top: 1em; }
.error-text {
color: red;
margin-top: .5em;
margin-bottom: .5em;
}
.step-message { display: none; }
.{{ g.antispam.honey_class }} {
display: none
}
</style>
</head>
<body>
<div class="grid-9">
{# The following blocks are hidden, they're used to provide messages to React component #}
<div id='message-number' class='step-message'>
{% block phone_validation_message_number %}
<p>
In order to register a project you need to perform phone
validation (just this once). Please, enter your phone number
below (e.g. 1-311-555-2368 or +61 8 5550 1757). You'll receive
an SMS message with a PIN you need to provide on the next step.
Your phone number will only be recorded by our SMS provider.
Standard SMS rates may apply.
</p>
{% endblock phone_validation_message_number %}
</div>
<div id='message-pin' class='step-message'>
{% block phone_validation_message_pin %}
<p>
A PIN is being sent to your phone. If you are unable to receive
SMS, you will get a voice call with the number.
</p>
{% endblock phone_validation_message_pin %}
</div>
<div id='message-extra' class='step-message'>
{% block phone_validation_message_extra %}
{% endblock phone_validation_message_extra %}
</div>
<div id="phone-verification-form">
{# Phone verification form will be mounted here (see phone-verification.js) #}
</div>
</div>
{% for blob in g.resource_manager.emit('body_js_tail') %}
{{ blob }}
{% endfor %}
</body>
</html>