-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
6 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Empty file.
Empty file.
Empty file.
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,71 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" > | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>CodePen - Weekly Coding Challenge #1 - Double slider Sign in/up Form - Desktop Only</title> | ||
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css'><link rel="stylesheet" href="./style.css"> | ||
|
||
</head> | ||
<body> | ||
<!-- partial:index.partial.html --> | ||
<h2>Weekly Coding Challenge #1: Sign in/up Form</h2> | ||
<div class="container" id="container"> | ||
<div class="form-container sign-up-container"> | ||
<form action="#"> | ||
<h1>Create Account</h1> | ||
<div class="social-container"> | ||
<a href="#" class="social"><i class="fab fa-facebook-f"></i></a> | ||
<a href="#" class="social"><i class="fab fa-google-plus-g"></i></a> | ||
<a href="#" class="social"><i class="fab fa-linkedin-in"></i></a> | ||
</div> | ||
<span>or use your email for registration</span> | ||
<input type="text" placeholder="Name" /> | ||
<input type="email" placeholder="Email" /> | ||
<input type="password" placeholder="Password" /> | ||
<button>Sign Up</button> | ||
</form> | ||
</div> | ||
<div class="form-container sign-in-container"> | ||
<form action="#"> | ||
<h1>Sign in</h1> | ||
<div class="social-container"> | ||
<a href="#" class="social"><i class="fab fa-facebook-f"></i></a> | ||
<a href="#" class="social"><i class="fab fa-google-plus-g"></i></a> | ||
<a href="#" class="social"><i class="fab fa-linkedin-in"></i></a> | ||
</div> | ||
<span>or use your account</span> | ||
<input type="email" placeholder="Email" /> | ||
<input type="password" placeholder="Password" /> | ||
<a href="#">Forgot your password?</a> | ||
<button>Sign In</button> | ||
</form> | ||
</div> <a href=""></a> | ||
<div class="overlay-container"> | ||
<div class="overlay"> | ||
<div class="overlay-panel overlay-left"> | ||
<h1>Welcome Back!</h1> | ||
<p>To keep connected with us please login with your personal info</p> | ||
<button class="ghost" id="signIn">Sign In</button> | ||
</div> | ||
<div class="overlay-panel overlay-right"> | ||
<h1>Hello, Friend!</h1> | ||
<p>Enter your personal details and start journey with us</p> | ||
<button class="ghost" id="signUp">Sign Up</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<footer> | ||
<p> | ||
Created with <i class="fa fa-heart"></i> by | ||
<a target="_blank" href="https://florin-pop.com">Florin Pop</a> | ||
- Read how I created this and how you can join the challenge | ||
<a target="_blank" href="https://www.florin-pop.com/blog/2019/03/double-slider-sign-in-up-form/">here</a>. | ||
</p> | ||
</footer> | ||
<!-- partial --> | ||
<script src="./script.js"></script> | ||
|
||
</body> | ||
</html> |
Empty file.