aboutsummaryrefslogtreecommitdiffstats
path: root/www/templates/en/submit_password.html
blob: df78969d08669df7713698a9e5c3c70a4addaf8e (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
<div id="submit-header" data-role="header">
    <h1>Your details</h1>
</div>

<div data-role="content">
    <div id="errors"></div>
    <form id="passwordForm" name="passwordForm">
    <div id="password_row">
        <div class="inputcard">
            <div>
                <input data-role="none" type="password" value="" name="password" id="form_password" placeholder="Your password" required>
            </div>
        </div>
        <input data-role="button" data-theme="a" type="submit" id="report" name="report" value="Report">
    </div>
    <div id="check_name" class="nodisplay">
        <div class="inputcard">
            <div>
                <input data-role="none" type="text" value="" id="form_name" name="name">
            </div>
            <div>
                <input data-role="none"type="tel" value="<%= user.phone %>" name="name" id="form_phone" placeholder="Please enter your phone number (optional)">
            </div>
            <div data-role="fieldcontain">
                <fieldset data-role="controlgroup">
                    <input type="checkbox" name="may_show_name" id="form_may_show_name" value="1" checked>
                    <label for="form_may_show_name">Show my name publicly</label>
                </fieldset>
            </div>
        </div>
        <input data-role="button" data-theme="a" type="submit" id="confirm_name" name="report" value="Confirm name">
    </div>
    </form>
</div>