cup/storage/templates/custom_theme_formpage.html

20 lines
454 B
HTML
Raw Normal View History

2024-10-07 19:12:28 -04:00
<!DOCTYPE html>
<html lang="en">
{{template "page_head" "Goffee"}}
<body>
<div class="container">
<form>
<fieldset>
<legend>Legend</legend>
<div class="row">
{{template "form_input" .FormText}}
{{template "form_input" .FormEmail}}
</div>
</fieldset>
{{template "form_button" .FormButton}}
</form>
</div>
{{template "page_footer"}}
</body>
</html>