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.
11 lines
646 B
11 lines
646 B
<modal class="modal color-text nolabel" key="modal" enabled=(input.enabled) closable on-close("close") on-open("open") >
|
|
<h1>Create Chapter</h1>
|
|
|
|
<p key="error" class="color-error">${state.error}</p>
|
|
|
|
<input key="title" placeholder="Title (Optional)" class="big" on-change("change", "title") value=state.values.title />
|
|
<input key="icdate" placeholder="IC Date (Optional)" on-change("change", "fictionalDate") value=state.values.fictionalDate />
|
|
<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>
|