mirror of
https://github.com/taigrr/shorturl
synced 2025-01-18 04:03:16 -08:00
16 lines
494 B
HTML
16 lines
494 B
HTML
{{define "content"}}
|
|
<section class="container">
|
|
<div class="columns">
|
|
<div class="column">
|
|
<form action="" method="POST">
|
|
<div class="form-group input-group">
|
|
<label class="form-label" for="input-url"></label>
|
|
<input class="form-input" id="input-url" type="text" name="url" placeholder="Enter long url here...">
|
|
<button class="btn btn-primary" type="submit">Shorten</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{end}}
|