mirror of
https://github.com/4rkal/shortr.git
synced 2024-11-14 13:47:23 +02:00
14 lines
252 B
Plaintext
14 lines
252 B
Plaintext
|
package views
|
||
|
|
||
|
templ Submission(url string){
|
||
|
|
||
|
@Base() {
|
||
|
<h1>Your url is: {url}</h1>
|
||
|
|
||
|
<form action="/stats" method="post">
|
||
|
<input type="hidden" id="id" name="id" value={url}>
|
||
|
<button type="submit">Stats</button>
|
||
|
</form>
|
||
|
}
|
||
|
}
|