| 1 |
@page "/Note" |
| 2 |
<PageTitle>Note</PageTitle> |
| 3 |
<script type="module" src="@Assets["Components/Pages/Note.razor.js"]"></script> |
| 4 |
|
| 5 |
<main> |
| 6 |
<div id="toolbar" class="note-toolbar" role="toolbar" aria-label="Formatting" aria-controls="input"> |
| 7 |
<button type="button" data-command="bold" aria-pressed="false" title="Bold (Ctrl+B)"><b>B</b></button> |
| 8 |
<button type="button" data-command="italic" aria-pressed="false" title="Italic (Ctrl+I)"><i>I</i></button> |
| 9 |
<button type="button" data-command="underline" aria-pressed="false" title="Underline (Ctrl+U)"><u>U</u></button> |
| 10 |
<button type="button" data-command="insertUnorderedList" aria-pressed="false" title="Bulleted list">• list</button> |
| 11 |
<button type="button" data-command="insertOrderedList" aria-pressed="false" title="Numbered list">1. list</button> |
| 12 |
</div> |
| 13 |
<div id="input" class="editor-tall note-editor" contenteditable="true" |
| 14 |
role="textbox" aria-multiline="true" aria-label="Note" autofocus></div> |
| 15 |
<Log/> |
| 16 |
</main> |