mirror of
https://github.com/4rkal/shortr.git
synced 2024-11-10 03:57:22 +02:00
18 lines
345 B
Plaintext
18 lines
345 B
Plaintext
package views
|
|
|
|
templ Index(){
|
|
@Base() {
|
|
|
|
<div class="card">
|
|
<h1>Blazingly fast URL shortener</h1>
|
|
<p>Shorten URLs and track clicks</p>
|
|
<form action="/submit" method="post">
|
|
<input type="text" id="url" name="url" placeholder="Enter URL here...">
|
|
<button type="submit">Shorten URL</button>
|
|
</form>
|
|
</div>
|
|
}
|
|
|
|
|
|
}
|