This commit is contained in:
Ulises Gascón
2024-02-07 12:29:54 +01:00
committed by Ulises Gascon
parent 91ba1f5054
commit 9dd233c371
143 changed files with 68070 additions and 1 deletions
+35
View File
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Whispering | Home</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="menu">
<ul>
<li><a href="/">Whispering</a></li>
</ul>
</nav>
<main>
<h1>Welcome to Whispering!</h1>
<figure>
<img src="people.jpg" alt="three people sitting at the table laughing together" />
<figcaption>Photo by <a href="https://unsplash.com/photos/g1Kr4Ozfoac">Brooke Cagle</a> from <a
href="https://unsplash.com/">Unsplash</a></figcaption>
</figure>
<h2>What is Whispering?</h2>
<p>Whispering is a microblogging platform that allows you to share your thoughts with the world and learn
Node.js on the way.</p>
<h2>Community live ⚡️</h2>
<p>Currently there are <%= whispers.length %> whispers available</p>
</main>
</body>
</html>
+34
View File
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Whispering | Login</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="menu">
<ul>
<li><a href="/">Whispering</a></li>
</ul>
</nav>
<main>
<h1>Welcome Back!</h1>
<form id="login">
<label for="username">Username</label>
<input type="text" id="username" name="username" placeholder="Your username" required />
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Your password" required />
<button type="submit">Login</button>
</form>
<p>Don't have an account yet? <a href="/signup">Sign Up</a></p>
</main>
<script src="auth.js"></script>
</body>
</html>
+36
View File
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Whispering | register</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="menu">
<ul>
<li><a href="/">Whispering</a></li>
</ul>
</nav>
<main>
<h1>Create your account!</h1>
<form id="sigup">
<label for="username">Username</label>
<input type="text" id="username" name="username" placeholder="Your username" required />
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Your email" required />
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Your password" required />
<button type="submit">Sign up</button>
</form>
<p>Already have an account? <a href="/login">Login</a></p>
</main>
<script src="auth.js"></script>
</body>
</html>