mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-28 04:45:36 -04:00
29 lines
674 B
Text
29 lines
674 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<% if (locals.user) {%>
|
|
MY PERSON <%= user.username %>
|
|
<a href="/log-out">LOG OUT</a>
|
|
<p> Views: <%= sessions %></p>
|
|
|
|
<% } else { %>
|
|
<p> you should log in man </P
|
|
<h1>please log in</h1>
|
|
|
|
<form action="/log-in" method="POST">
|
|
<label for="username">Username</label>
|
|
<input id="username" name="username" placeholder="username" type="text" />
|
|
<label for="password">Password</label>
|
|
<input id="password" name="password" type="password" />
|
|
<button>Log In</button>
|
|
</form>
|
|
<% } %>
|
|
|
|
<a type="button" href="/login/federated/google">Sign in with Google</a>
|
|
</body>
|
|
</html>
|
|
|