url_shortiner/views/index.html

29 lines
418 B
HTML
Raw Normal View History

2024-02-01 14:39:37 +00:00
{{define "head"}}
<style>
</style>
{{end}}
{{define "content"}}
<p>
<form method="POST" class="form-inline">
<input
type="url"
name="url"
class="form-control mb-2 mr-sm-2 border-success"
/>
<input
type="submit"
value="Trumpink nūruoda"
class="btn btn-sm btn-success mb-2"
/>
</form>
{{if .shortUrl}}
<b>{{ .shortUrl }}</b>
{{end}}
</p>
{{end}}