2024-10-07 19:12:28 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
{{template "page_head" "Goffee"}}
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<form>
|
|
|
|
<fieldset>
|
2024-10-14 13:19:25 -04:00
|
|
|
<legend>form demos</legend>
|
2024-10-07 19:12:28 -04:00
|
|
|
<div class="row">
|
|
|
|
{{template "form_input" .FormText}}
|
2024-10-10 09:59:53 -04:00
|
|
|
{{template "form_input" .FormEmail}}
|
|
|
|
{{template "form_select" .FormSelectCity}}
|
|
|
|
{{template "form_textarea" .FormTextarea}}
|
|
|
|
{{template "form_radio" .FormRadio}}
|
|
|
|
{{template "form_checkbox" .FormCheckbox}}
|
2024-10-07 19:12:28 -04:00
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
{{template "form_button" .FormButton}}
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{{template "page_footer"}}
|
|
|
|
</body>
|
|
|
|
</html>
|