forked from Ailur/burgernotes-server
36 lines
929 B
HTML
36 lines
929 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>burgernotes</title>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="mainDiv">
|
|
<br>
|
|
<h1>burgernotes</h1>
|
|
<p>simple note taking app</p>
|
|
<br>
|
|
<a href="/signup">sign up</a>
|
|
<a href="/login">log in</a>
|
|
<br><br><br>
|
|
|
|
<img height="280px" src="/static/mainimg.png">
|
|
|
|
<br><br>
|
|
<div class="feature green">
|
|
<h4>secure</h4>
|
|
<p>all your notes are fully end-to-end encrypted. only you can read your notes, not anyone else.</p>
|
|
</div>
|
|
<div class="feature yellow">
|
|
<h4>always up-to-date</h4>
|
|
<p>your notes seamlessly sync across your devices.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |