Skip to content

Commit

Permalink
Add starter login view.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhanson committed Jan 19, 2022
1 parent 6685df4 commit c130a7e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions views/login.ejs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Express • TodoMVC</title>
<link rel="stylesheet" href="/css/base.css">
<link rel="stylesheet" href="/css/index.css">
<link rel="stylesheet" href="/css/login.css">
</head>
<body>
<section class="prompt">
<h3>todos</h3>
<h1>Sign in</h3>
<hr>
<p class="help">Don't have an account? <a href="/signup">Sign up</a></p>
</section>
<footer class="info">
<p>Created by <a href="https://www.jaredhanson.me">Jared Hanson</a></p>
<p>Part of <a href="https://todomvc.com">TodoMVC</a></p>
<p>Authentication powered by <a href="https://www.passportjs.org">Passport</a></p>
</footer>
</body>
</html>

0 comments on commit c130a7e

Please sign in to comment.