diff options
Diffstat (limited to 'views/create.ejs')
-rw-r--r-- | views/create.ejs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/views/create.ejs b/views/create.ejs new file mode 100644 index 0000000..a23fab5 --- /dev/null +++ b/views/create.ejs @@ -0,0 +1,22 @@ +<%- include('header', { title: title.title_name }) %> +<style>form{display:block;margin-left:200px;}</style> +<a href="/info/<%= title.title_id %>"><img class="logo" src="/<%= title.title_id %>/cover.jpg"></a> +<form action="/create/<%= title.title_id %>" method="post"> +<p> +Scenario:<br> +<select id="scenario" name="scenario"> +<% scenarios.forEach((scenario) => { %> +<option value="<%= scenario %>"><%= scenario %></option> +<% }); %> +</select> +<p> +Description:<br> +<input type="text" autocomplete="off" id="description" name="description" size="50"> +<p> +<label> +<input type="checkbox" id="private" name="private" value="private"> +<span>Private</span> +</label> +<p> +<button type="submit">Create</button> +</form> |