Files
sprintpadawan/templates/story_edit.html
T
2026-04-24 00:00:19 -06:00

16 lines
729 B
HTML

<div class="modal-overlay" onclick="this.remove()">
<div class="modal" onclick="event.stopPropagation()">
<div class="modal-header">
<h2>Rename Story</h2>
<button class="modal-close" onclick="this.closest('.modal-overlay').remove()">&times;</button>
</div>
<form method="POST" action="/rooms/{{.RoomID}}/stories/{{.Story.ID}}/rename" class="auth-form">
<div class="form-group">
<label class="form-label">Story Title</label>
<input class="form-input" type="text" name="title" value="{{.Story.Title}}" required />
</div>
<button class="btn-primary" type="submit">Save</button>
</form>
</div>
</div>