views/honkform.html (view raw)
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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
<p id="honkformhost"> <button id="honkingtime" {{ if .IsPreview }}class="hide"{{ end }}><a href="/newhonk">it's honking time</a></button> <form id="honkform" action="/honk" method="POST" enctype="multipart/form-data" {{ if not .IsPreview }}class="hide"{{ end }}> <input type="hidden" name="CSRF" value="{{ .HonkCSRF }}"> <input type="hidden" name="updatexid" id="updatexidinput" value = "{{ .UpdateXID }}"> <input type="hidden" name="rid" id="ridinput" value="{{ .InReplyTo }}"> <h3>let's make some noise</h3> <p> <details> <summary>more options</summary> <p> <label class=button id="donker">attach: <input type="file" multiple name="donk"><span>{{ .SavedFile }}</span></label><input type="hidden" id="saveddonkxid" name="donkxid" value="{{ .SavedFile }}"> <p id="donkdescriptor"><label for=donkdesc>description:</label><br> <input type="text" name="donkdesc" value="{{ .DonkDesc }}" autocomplete=off> {{ with .SavedPlace }} <p><button id=checkinbutton type=button>assassination coordinates</button> <div id=placedescriptor> <p><label>name:</label><br><input type="text" name="placename" id=placenameinput value="{{ .Name }}"> <p><label>url:</label><br><input type="text" name="placeurl" id=placeurlinput value="{{ .Url }}"> <p><label>lat: </label><input type="text" size=9 name="placelat" id=placelatinput value="{{ .Latitude}}"> <label>lon: </label><input type="text" size=9 name="placelong" id=placelonginput value="{{ .Longitude }}"> </div> {{ else }} <p><button id=checkinbutton type=button>assassination coordinates</button> <div id=placedescriptor class="hide"> <p><label>name:</label><br><input type="text" name="placename" id=placenameinput value=""> <p><label>url:</label><br><input type="text" name="placeurl" id=placeurlinput value=""> <p><label>lat: </label><input type="text" size=9 name="placelat" id=placelatinput value=""> <label>lon: </label><input type="text" size=9 name="placelong" id=placelonginput value=""> </div> {{ end }} <p><button id=addtimebutton type=button>add time</button> <div id=timedescriptor class="{{ or .ShowTime "hide" }}"> <p><label for=timestart>start:</label><br> <input type="text" name="timestart" value="{{ .StartTime }}"> <p><label for=timeend>duration:</label><br> <input type="text" name="timeend" value="{{ .Duration }}"> </div> <svg class="emuload" id="emuload" xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-mood-neutral" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> <circle cx="12" cy="12" r="9"></circle> <line x1="9" y1="10" x2="9.01" y2="10"></line> <line x1="15" y1="10" x2="15.01" y2="10"></line> </svg> <div id="emupicker"> </div> </details> <p> <textarea name="noise" id="honknoise">{{ .Noise }}</textarea> <p class="buttonarray"> <button>it's gonna be honked</button> <button name="preview" value="preview">preview</button> <button type=button name="cancel" value="cancel">cancel</button> </form> |