The frontend/UI server, written in JS using the MarkoJS library
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<modal class="modal color-text nolabel" key="modal" enabled=(input.enabled) closable on-close("close") on-open("open") > <h1>Edit Chapter</h1>
<p key="error" class="color-error">${state.error}</p>
<label>Title</label> <input key="title" placeholder="Title" class="big" on-change("change", "title") value=state.values.title /> <label>IC Date</label> <input key="icdate" placeholder="IC Date" on-change("change", "fictionalDate") value=state.values.fictionalDate /> <label>Content</label> <textarea key="source" placeholder="Content" class="tall" on-change("change", "source") value=state.values.source />
<button disabled=state.loading on-click("save")>Save</button> </modal>
|