Would it be poor design to create a custom editTemplate that uses form elements for displaying the fields?
I want to redesign the editTemplate in a way where the name of the field is in the border like a fieldset element (along with some other tweaks later on), and considering that the editTemplate is basically a form for modifying the tiddler, started to wonder why it wasn’t used that way, and if maybe this was done to avoid confusion?
So, I started to make a POC, nothing functional, but just enough to give an idea of what I might want it to eventually look like, and added it below as reference.
i.e.
<style>
.test-field-class {
border: solid 1px <<color table-border>>;
}
.test-field-class legend {
padding: 0 1ch;
}
.test-field-class input.test-field-class {
border: none;
width: 100%;
}
</style>
<form>
<fieldset class="test-field-class">
<legend>Title</legend>
{{!!title}} <i class="tc-muted"> {{!!draft.of}}</i>
</fieldset>
<fieldset class="test-field-class" style="width:;">
<legend>Status</legend>
{{!!status}} //(custom field I'm adding for todo imcomplete, etc.)//
</fieldset>
<fieldset class="test-field-class">
<legend>Tags</legend>
<span><$edit-text tiddler=<<currentTiddler>> field="placeholder" size="10" focus="no" focusSelectFromEnd="13" default="placeholder for add Tags input" /></span> <<tag>>
</fieldset>
<fieldset class="test-field-class">
<legend>Text Editor</legend>
<$transclude tiddler="$:/core/ui/EditTemplate/body/editor" mode="inline"/>
</fieldset>
<fieldset class="test-field-class">
<legend>Editor Preview</legend>
<$edit-text class="test-field-class" tiddler=<<currentTiddler>> field="placeholder" size="50" focus="no" focusSelectFromEnd="13" default="Just a placeholder for the preview-preview" />
</fieldset>
</form>

) over function”
