21 lines
714 B
HTML
21 lines
714 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<title>Success!</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="headerbar">
|
|
<a href="/">HectaMail</a>
|
|
<a class="main" href="/register">Sign up</a>
|
|
<a href="/login">Login</a>
|
|
</div>
|
|
<div class="content">
|
|
<h1>Done!</h1>
|
|
<p1>Success! Add this to your favourite email program with the infomation noted on the main page!</p1>
|
|
<div class=spacer2>
|
|
<button onclick="location.href = '/';">Go to home</button>
|
|
</div>
|
|
</div>
|
|
</body><style type="text/css"></style></html>
|