parent
c92b0bc3a8
commit
3b5e5547b9
@ -0,0 +1,46 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
<title>Form Input Wave</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Sing up</h1>
|
||||
<form>
|
||||
<div class="form-control">
|
||||
<input type="text" required>
|
||||
<label>Full Name</label>
|
||||
</div>
|
||||
<div class="form-control">
|
||||
<input type="text" required>
|
||||
<label>Email</label>
|
||||
<!-- <label>
|
||||
<span style="transition-delay: 0ms">E</span>
|
||||
<span style="transition-delay: 50ms">m</span>
|
||||
<span style="transition-delay: 100ms">a</span>
|
||||
<span style="transition-delay: 150ms">i</span>
|
||||
<span style="transition-delay: 200ms">l</span>
|
||||
</label> -->
|
||||
</div>
|
||||
|
||||
<div class="form-control">
|
||||
<input type="password" id="password" required>
|
||||
<label>Password</label>
|
||||
</div>
|
||||
|
||||
<div class="form-control">
|
||||
<input type="password" id="confirm password" required>
|
||||
<label>Confirm Password</label>
|
||||
</div>
|
||||
|
||||
<button class="btn">Sing up</button>
|
||||
|
||||
<p class="text">Already have an account? <a href="index.html">Login</a> </p>
|
||||
</form>
|
||||
</div>
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in new issue