shortr/views/submit.templ

14 lines
252 B
Plaintext
Raw Normal View History

2024-09-11 17:58:42 +03:00
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>
}
}