mirror of
https://github.com/GRFreire/nthmail.git
synced 2026-01-09 21:09:39 +00:00
23 lines
509 B
Plaintext
23 lines
509 B
Plaintext
package main
|
|
|
|
templ index_page() {
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<title>nthmail.xyz</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
|
<meta name="description" content="A temporary mail service"/>
|
|
</head>
|
|
<body>
|
|
<h1>nthmail.xyz</h1>
|
|
<p>
|
|
A disposable, temporary and private mail address!
|
|
</p>
|
|
<form action="random" >
|
|
<button type="submit">Get one now!</button>
|
|
</form>
|
|
</body>
|
|
</html>
|
|
}
|