tagger/templates/index.tmpl
2024-04-04 13:30:41 -07:00

40 lines
926 B
Cheetah

{{ template "header.tmpl" . }}
<style>
.tagger-icon {
background-size: 20px;
background: url("icons/tagger32-whg.png") no-repeat scroll left;
padding-left: 30px
}
</style>
<br/>
<br/>
<br/>
<br/>
<center>
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-4">
<h1 class="display-1">Tagger</h1>
</div>
</div>
<form action="/" method="POST" class="form-inline">
<div class="row justify-content-center">
<div class="col-4">
<div class="form-group mb-2">
<input class="form-control tagger-icon" style="background-color: black; color: white; font-size: 18pt;" type="text" name="terms[]" id="query">
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-4">
<button type="submit" class="btn btn-primary mb-2">Search</button>
</div>
</div>
</form>
</div>
</center>
{{ template "footer.tmpl" . }}