16 lines
729 B
HTML
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()">×</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>
|