mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 22:42:24 +00:00
77c1b150d9
Add remaining platform form controls; amend mct-form and mct-control directives to better communicate state. Begin working on problem of communicating validation back out of the form. WTD-530.
28 lines
913 B
HTML
28 lines
913 B
HTML
<div class='form-control complex datetime'>
|
|
<div class='field-hints'>
|
|
<span class='hint date'>Date</span>
|
|
<span class='hint time sm'>Hour</span>
|
|
<span class='hint time sm'>Min</span>
|
|
<span class='hint time sm'>Sec</span>
|
|
<span class='hint timezone'>Timezone</span>
|
|
</div>
|
|
|
|
<div class='fields'>
|
|
<span class='field control date'>
|
|
<input type='text' name='date' />
|
|
</span>
|
|
<span class='field control time sm'>
|
|
<input type='text' name='hour' maxlength='2' />
|
|
</span>
|
|
<span class='field control time sm'>
|
|
<input type='text' name='min' maxlength='2' />
|
|
</span>
|
|
<span class='field control time sm'>
|
|
<input type='text' name='sec' maxlength='2' />
|
|
</span>
|
|
<span class='field control timezone'>
|
|
UTC
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div> |