| [define title]Create a new hotlist[end] |
| [define category_css]css/ph_detail.css[end] |
| [include "../framework/header.ezt" "hidetabs"] |
| |
| <h2>Create a hotlist</h2> |
| |
| <form action="createHotlist.do" method="POST" id="create_hotlist_form" |
| style="margin: 1em;"> |
| <input type="hidden" name="token" value="[form_token]"> |
| |
| <label for="hotlistname">Hotlist Name:</label><br> |
| <input type="text" id="hotlistname" name="hotlistname" size="30" autocomplete="off" |
| value="[initial_name]"> |
| <span class="graytext">Example: My-Hotlist-Name</span> |
| <div class="fielderror"> |
| <span id="hotlistnamefeedback"> |
| [if-any errors.hotlistname][errors.hotlistname][end] |
| </span> |
| </div> |
| |
| <label for="summary">Summary</label><br> |
| <input type="text" id="summary" name="summary" size="75" autocomplete="off" |
| value="[initial_summary]"> |
| <div class="fielderror"> |
| <span id="summaryfeedback"> |
| [if-any errors.summary][errors.summary][end] |
| </span> |
| </div> |
| |
| <label for="description">Description</label><br> |
| <textarea id="description" name="description" rows="20" cols="90" wrap="soft">[initial_description]</textarea> |
| <br><br> |
| |
| <div> |
| <span>Owner: [logged_in_user.email]</span> |
| <div class="graytext"> |
| You will be the owner of this hotlist with permission to edit everything |
| </div> |
| </div> |
| <br> |
| |
| <label for="editors">Editors</label><br> |
| <input type="text" id="editors" name="editors" size="75" autocomplete="off" |
| value="[initial_editors]"> |
| <span class="graytext">Example: user@email.com, example@email.com</span> |
| <div class="graytext">Editors may add, remove, or rank issues</div> |
| <div class="fielderror"> |
| <span id="editorsfeedback"> |
| [if-any errors.editors][errors.editors][end] |
| <span> |
| </div> |
| |
| <label for="privacy">Viewable by:</label> |
| <select name="is_private" id="privacy"> |
| <option disabled="disabled">Select an access level...</option> |
| <option value="no">Anyone on the internet</option> |
| <option value="yes" selected="selected">Hotlist members</option> |
| </select> |
| <br><br> |
| |
| <input type="submit" value="Create hotlist"> |
| </form> |
| |
| [include "../framework/footer.ezt"] |