nthmail/cmd/web_server/index.templ
2024-02-20 17:59:47 -03:00

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>
}