odin-codespace/signup_form/index.html

55 lines
2.1 KiB
HTML
Raw Normal View History

2023-11-01 15:00:51 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sign up! | Smig.Tech™</title>
2023-11-01 15:00:51 -04:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-11-06 10:03:59 -05:00
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,900&display=swap" rel="stylesheet">
2023-11-01 15:00:51 -04:00
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="sidebar">
2023-11-06 10:03:59 -05:00
<div class="logo logo-text">
<img src="static/logo.png" alt="" srcset="">
2023-11-06 10:23:54 -05:00
<h1>Smig.Tech</h1>
2023-11-06 10:03:59 -05:00
</div>
2023-11-01 15:00:51 -04:00
</div>
<div class="form">
<h1 class="call-to-action">Sign up today!</h1>
2023-11-07 11:04:59 -05:00
<form action="post" method="#">
2023-11-03 17:00:22 -04:00
<div class="form-input">
2023-11-05 15:26:13 -05:00
<label for="name">NAME</label>
<input type="text" name="name" id="name"required>
2023-11-03 17:00:22 -04:00
</div>
<div class="form-input">
2023-11-05 15:26:13 -05:00
<label for="email">EMAIL</label>
<input type="email" name="email" id="email" required>
2023-11-03 17:00:22 -04:00
</div>
<div class="form-input">
2023-11-05 15:26:13 -05:00
<label for="password">PASSWORD</label>
2023-11-04 10:05:32 -04:00
<input type="password" name="password" id="password" required minlength="8">
<div class="error"></div>
2023-11-03 17:00:22 -04:00
</div>
<div class="form-input">
2023-11-06 12:04:08 -05:00
<label for="password-confirmation">CONFIRM PASSWORD</label>
<input type="password" name="password-confirmation" id="password-confirmation" required
2023-11-04 10:05:32 -04:00
minlength="8">
<div class="error"></div>
2023-11-03 17:00:22 -04:00
</div>
2023-11-06 10:03:59 -05:00
<div class="form-button">
2023-11-07 11:04:59 -05:00
<button type="#">Create Account</button>
<p>Already have an account? <a href="#">Log in</a></p>
2023-11-05 15:26:13 -05:00
</div>
2023-11-03 17:00:22 -04:00
</form>
2023-11-01 15:00:51 -04:00
</div>
</div>
<script src="js/script.js"></script>
</body>
2023-11-03 17:00:22 -04:00
2023-11-01 15:00:51 -04:00
</html>