hs-anyone-web/templates/index.html
Nathan Woodburn 859c88fb97
All checks were successful
Build Docker / BuildImage (push) Successful in 30s
feat: Add web server
2024-10-03 14:06:42 +10:00

27 lines
919 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HS-Anyone | Nathan.Woodburn/</title>
<link rel="icon" href="/assets/img/favicon.png" type="image/png">
<link rel="stylesheet" href="/assets/css/index.css">
</head>
<body>
<div class="spacer"></div>
<div class="centre">
<h2 style="color: red;">{{error}}</h2>
<h1>Renew an anyone can renew domain</h1>
<p>This is a service to help anyone renew a domain name.</p>
<p>To renew a domain name, you will need to enter the domain below. You will be redirected to pay 10 HNS to cover the cost of the renewal.</p>
<form action="/renew" method="POST">
<input type="text" name="domain" placeholder="exampledomain">
<button type="submit">Renew</button>
</form>
</div>
</body>
</html>