void.cat/VoidCat/Pages/EmailCode.cshtml
Kieran 72823ffedd
Add email verification
Standardize button styles
2022-03-02 11:37:15 +00:00

36 lines
893 B
Plaintext

@using VoidCat.Model
@model VoidCat.Model.EmailVerificationCode
<!DOCTYPE html>
<html lang="en">
<head>
<title>void.cat - Email Verification Code</title>
<style>
body {
background-color: black;
color: white;
font-family: 'Source Code Pro', monospace;
}
.page {
width: 720px;
margin-left: auto;
margin-right: auto;
}
pre {
padding: 10px;
font-size: 24px;
background-color: #eee;
width: fit-content;
color: black;
user-select: all;
}
</style>
</head>
<body>
<div class="page">
<h1>void.cat</h1>
<p>Your verification code is below please copy this to complete verification</p>
<pre>@(Model?.Id.ToBase58() ?? "?????????????")</pre>
</div>
</body>
</html>