blob: be34c4d6acd57b400d3c8b810b71fcc00136ddf6 (
plain)
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
|
<div id="submit-header" data-role="header">
<h1>[% loc('Your details') %]</h1>
</div>
<div data-role="content">
<p class="notopmargin">
[% tprintf('You are logged in as %s', '<%= user.email %>') %].
</p>
<p>
[% loc('Please confirm your name, if you want it to be public and optionally your phone number.') %]
</p>
<div id="errors"></div>
<div class="inputcard">
<% if ( typeof model.titles_list !== 'undefined' ) { %>
<div>
<select data-role="none" placeholder="[% loc('Title') %]" id="form_title" name="title" required>
<option value="">[% loc('Title') %]</option>
<% for ( var i = 0; i < model.titles_list.length; i++ ) { var title = model.titles_list[i]; print( '<option value="' + title + '"' + ( user.title && user.title == title ? ' selected' : '' ) + '>' + title + '</option>' ); } %>
</select>
</div>
<% } %>
<div>
<input data-role="none" type="text" value="<%= user.name %>" name="name" id="form_name" placeholder="[% loc('Please enter your name') %]" required>
</div>
<div>
<input data-role="none" type="tel" value="<%= user.phone %>" name="name" id="form_phone" placeholder="[% loc('Optionally enter your phone number') %]">
</div>
<div class="checkbox-group noborder">
<input type="checkbox" name="may_show_name" id="form_may_show_name" value="1" <% if ( typeof user.may_show_name == 'undefined' || user.may_show_name ) { %>checked<% } %>>
<label class="inline" for="form_may_show_name">[% loc('Show my name publicly') %]</label>
</div>
</div>
<div class="bottom-btn">
<input data-role="button" data-theme="a" type="button" id="report" name="report" value="[% loc('Report') %]">
</div>
</div>
|