mirror of
https://github.com/4rkal/shortr.git
synced 2025-01-19 15:03:38 +02:00
14 lines
289 B
Plaintext
14 lines
289 B
Plaintext
package views
|
|
|
|
templ Submission(url, baseurl string){
|
|
|
|
@Base() {
|
|
<h1>Your url is: <code>{baseurl + "/" + url}</code></h1>
|
|
|
|
<form action="/stats" method="get">
|
|
<input type="hidden" id="id" name="id" value={url}>
|
|
<button type="submit">Stats</button>
|
|
</form>
|
|
}
|
|
}
|