1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-03 19:51:42 +00:00
catbase/plugins/emojy/upload.templ

33 lines
938 B
Plaintext
Raw Normal View History

2024-02-27 21:43:37 -05:00
package emojy
templ (p *EmojyPlugin) uploadIndex() {
2024-02-28 10:25:43 -05:00
<div class="grid-container">
<div class="grid-x">
<div class="cell">
<h2>Emojy</h2>
</div>
</div>
<div class="grid-x">
<div class="cell">
@p.emojyNav()
</div>
</div>
2024-03-13 10:57:52 -04:00
<form hx-post="/emojy/upload" enctype="multipart/form-data">
2024-02-28 10:25:43 -05:00
<div class="grid-x">
<div class="cell">
<label>Passphrase</label>
<input type="text" name="password" placeholder="Password..."></input>
</div>
<div class="cell">
<label>File
2024-03-13 10:57:52 -04:00
<input type="file" name="attachment" />
2024-02-28 10:25:43 -05:00
</label>
</div>
<div class="cell">
2024-03-13 10:57:52 -04:00
<button class="button" type="submit">Submit</button>
2024-02-28 10:25:43 -05:00
</div>
</div>
2024-03-13 10:57:52 -04:00
</form>
2024-02-27 21:43:37 -05:00
</div>
}