diff options
author | LarsVomMars | 2020-10-07 23:42:34 +0200 |
---|---|---|
committer | LarsVomMars | 2020-10-10 13:17:58 +0200 |
commit | 4e9154b12ea3ddd9da32d2a4d1ebc30f13678c59 (patch) | |
tree | e77488cc313fc3707b688305080eb27bc2ac73e0 /profile/public/index.html | |
parent | 0e57580efcce8e8f11d5e9643700e706a193f920 (diff) |
User profile boilerplate
Diffstat (limited to 'profile/public/index.html')
-rw-r--r-- | profile/public/index.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/profile/public/index.html b/profile/public/index.html new file mode 100644 index 0000000..30f9de8 --- /dev/null +++ b/profile/public/index.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html lang="de"> + +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="https://unpkg.com/purecss@2.0.3/build/pure-min.css" + integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" crossorigin="anonymous" /> + <link rel="stylesheet" href="style.css" type="text/css" media="all" /> + <title>Steckbrief</title> +</head> + +<body> + <div class="pure-menu pure-menu-horizontal"> + <a href="/" class="pure-menu-item pure-menu-link">Home</a> + <a href="/auth/api/logout" class="pure-menu-item pure-menu-link">Logout</a> + </div> + <main> + <!-- TODO: JS switch method/action --> + <form class="pure-form pure-form-stacked" action="api/add" method="post"> + <fieldset> + <legend>Steckbrief</legend> + + <!-- TODO: Insert stuff lel --> + + <!-- TODO: Consider autosave --> + <button type="submit" class="pure-button pure-button-primary">Wohooo</button> + </fieldset> + </form> + </main> + <script src="js/script.js"></script> +</body> + +</html>
\ No newline at end of file |