Files
odidere/internal/service/templates/static/footer/compose.gohtml
2026-07-05 17:55:07 +00:00

77 lines
2.4 KiB
Plaintext

{{ define "footer/compose" }}
<div class="compose">
<textarea
class="compose__textarea"
id="text-input"
placeholder="Type a message..."
aria-label="Message input"
rows="1"
></textarea>
<div class="compose__attachments" id="attachments"></div>
<div class="compose__actions">
<div class="compose__actions-left">
<button
type="button"
class="compose__action-btn"
id="compose-settings"
data-action="compose-settings"
aria-label="Compose settings"
>
<svg class="icon"><use href="/static/icons.svg#settings-2"></use></svg>
</button>
<button
type="button"
class="compose__action-btn"
id="attach"
data-action="attach"
aria-label="Attach files"
>
<svg class="icon"><use href="/static/icons.svg#attach"></use></svg>
</button>
<button
type="button"
class="compose__action-btn"
id="location"
data-action="location"
aria-label="Include location"
title="Include GPS location"
>
<svg class="icon"><use href="/static/icons.svg#location"></use></svg>
</button>
</div>
<input type="file" id="file-input" multiple hidden />
<div class="compose__actions-right">
<button
type="button"
class="compose__action-btn"
id="transcribe"
data-action="transcribe"
aria-label="Transcribe to text"
title="Record and transcribe (does not send)"
>
<svg class="icon"><use href="/static/icons.svg#dictate"></use></svg>
</button>
<button
type="button"
class="compose__action-btn compose__action-btn--record"
id="ptt"
data-action="ptt"
aria-label="Push to talk"
>
<svg class="icon"><use href="/static/icons.svg#mic"></use></svg>
</button>
<button
type="button"
class="compose__action-btn compose__action-btn--send"
id="send"
data-action="send"
aria-label="Send message"
>
<svg class="icon compose__icon--send"><use href="/static/icons.svg#send"></use></svg>
<svg class="icon compose__icon--stop"><use href="/static/icons.svg#stop"></use></svg>
</button>
</div>
</div>
</div>
{{ end }}