-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
388e8f1
commit 0f9af3c
Showing
5 changed files
with
289 additions
and
21 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Login Form By Muhammad Hassan Raza</title> | ||
<link rel="icon" href="images/icon1.png" type="image/x-icon"> | ||
<link rel="stylesheet" href="style.css"> | ||
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<!-- Login Form Start --> | ||
<div class="LoginformDiv" data-aos="fade-down" | ||
data-aos-easing="linear" | ||
data-aos-duration="500"> | ||
<div class="loginHeadingDiv"> | ||
<h1>Login Form</h1> | ||
</div> | ||
<form> | ||
<div class="logininpDiv"> | ||
<input type="email" placeholder="Email"> | ||
<input type="password" placeholder="Password"> | ||
</div> | ||
|
||
<div class="loginbtnDiv"> | ||
<button>Login</button> | ||
<p class="linkText">Not Registered? <a href="#" id="gotoSignup">Signup Now</a></p> | ||
</div> | ||
</form> | ||
</div> | ||
<!-- Login Form End --> | ||
|
||
<script> | ||
var gotoSignup = document.getElementById('gotoSignup') | ||
gotoSignup.addEventListener('click',()=>{ | ||
window.location.href = '../index.html' | ||
}) | ||
</script> | ||
|
||
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> | ||
<script> | ||
AOS.init(); | ||
</script> | ||
|
||
<script src="app.js" type="module"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.