aboutsummaryrefslogtreecommitdiffstats
path: root/templates/submit_confirm.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/submit_confirm.html')
-rw-r--r--templates/submit_confirm.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/templates/submit_confirm.html b/templates/submit_confirm.html
new file mode 100644
index 0000000..1a20b28
--- /dev/null
+++ b/templates/submit_confirm.html
@@ -0,0 +1,31 @@
+<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">
+ <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" 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>