AUI

Time

An easily stylable form element to enter and edit time.

<form>
	<p>
		<a-time name="time" value="15:15"></a-time>
	</p>
	<p>
		<button type="reset">Reset</button>
		<button type="submit">Test</button>
	</p>
</form>

<script>
import { FormAssociatedTimeElement } from "@jsxtools/aui/elements/form-associated-time"

customElements.define("a-time", FormAssociatedTimeElement)
</script>