diff options
Diffstat (limited to 'www/templates/en/details.html')
-rw-r--r-- | www/templates/en/details.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/www/templates/en/details.html b/www/templates/en/details.html new file mode 100644 index 0000000..08b2876 --- /dev/null +++ b/www/templates/en/details.html @@ -0,0 +1,21 @@ +<div data-role="header"> + <h1>Details</h1> + <a id="next" data-icon="arrow-r" data-iconpos="right" class="ui-btn-right">Next</a> +</div> +<div data-role="content"> + <div class="gmailstyletest"> + <div> + <label for="form_title">Subject</label> + <input data-role="none" type="text" name="title" id="form_title" placeholder="Provide a title" value="<%= title %>" required> + </div> + + <div> + <%= categories %> + </div> + + <div class="noborder"> + <label for="form_detail">Details</label> + <textarea data-role="none" name="detail" id="form_detail" placeholder="Please fill in details of the problem." required><%= details %></textarea> + </div> + </div> +</div> |