Notes/Views/Home/Index.cshtml

13 lines
333 B
Plaintext
Raw Normal View History

2023-05-12 16:38:13 +00:00
@model ContentModel
2022-11-29 15:14:15 +00:00
2023-05-12 16:38:13 +00:00
<textarea id="content" name="content" spellcheck="false">@Model.Text</textarea>
<div class="note-names">
@foreach (var note in Model.NoteNames)
{
<a href="@note">@note</a>
}
</div>
2022-12-01 02:33:41 +00:00
2023-02-01 02:18:57 +00:00
<div class="toast" id="saved-indicator">Saved</div>
<div class="toast" id="update-indicator">Updated</div>