|
| 1 | +<!DOCTYPE html> |
| 2 | +<htmllang="en"> |
| 3 | +<head> |
| 4 | +<metacharset="UTF-8"/> |
| 5 | +<metaname="viewport"content="width=device-width, initial-scale=1.0"/> |
| 6 | +<link |
| 7 | +rel="stylesheet" |
| 8 | +href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" |
| 9 | +integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" |
| 10 | +crossorigin="anonymous" |
| 11 | +/> |
| 12 | +<linkrel="stylesheet"href="style.css"/> |
| 13 | +<title>Registraion Form</title> |
| 14 | +</head> |
| 15 | +<body> |
| 16 | +<divclass="registration-form"> |
| 17 | +<divclass="header"> |
| 18 | +<buttonclass="btn btn-tab btn-ripple active"data-target-tab="#signin"> |
| 19 | + SIGN IN |
| 20 | +</button> |
| 21 | +<buttonclass="btn btn-tab btn-ripple"data-target-tab="#signup"> |
| 22 | + SIGN UP |
| 23 | +</button> |
| 24 | +</div> |
| 25 | +<divclass="body"> |
| 26 | +<divclass="content active"id="signin"> |
| 27 | +<h1>Sign in to your acccount</h1> |
| 28 | +<pclass="gray">Sign in to access all free resources</p> |
| 29 | + |
| 30 | +<divclass="flex justify-between"> |
| 31 | +<buttonclass="btn btn-oauth"> |
| 32 | +<iclass="fab fa-google"></i> Sign in with Google |
| 33 | +</button> |
| 34 | +<buttonclass="btn btn-oauth"> |
| 35 | +<iclass="fab fa-twitter"></i> Sign in with Twitter |
| 36 | +</button> |
| 37 | +</div> |
| 38 | + |
| 39 | +<divclass="bar"></div> |
| 40 | + |
| 41 | +<formaction="#"> |
| 42 | +<divclass="input-group"> |
| 43 | +<input |
| 44 | +type="text" |
| 45 | +name="" |
| 46 | +id="name" |
| 47 | +class="input-elem" |
| 48 | +placeholder="" |
| 49 | +autocomplete="off" |
| 50 | +/> |
| 51 | +<labelfor="name">Name</label> |
| 52 | +</div> |
| 53 | +<divclass="input-group"> |
| 54 | +<input |
| 55 | +type="password" |
| 56 | +name="" |
| 57 | +id="password" |
| 58 | +class="input-elem" |
| 59 | +placeholder="" |
| 60 | +autocomplete="off" |
| 61 | +/> |
| 62 | +<labelfor="password">Password</label> |
| 63 | +<iclass="fas fa-eye-slash eye"></i> |
| 64 | +</div> |
| 65 | +<divclass="agreements"> |
| 66 | +<inputtype="checkbox"name=""id="rem_pass"/> |
| 67 | +<labelfor="rem_pass"class="gray">Remember Password</label> |
| 68 | +</div> |
| 69 | +<buttonclass="btn btn-register">Sign In</button> |
| 70 | +<ahref="#"class="reg_link">Forgot your password?</a> |
| 71 | +</form> |
| 72 | +</div> |
| 73 | +<divclass="content"id="signup"> |
| 74 | +<h1>REGISTER</h1> |
| 75 | +<pclass="gray"> |
| 76 | + You can use this account to log in to any of our products |
| 77 | +</p> |
| 78 | + |
| 79 | +<divclass="flex justify-between"> |
| 80 | +<buttonclass="btn btn-oauth"> |
| 81 | +<iclass="fab fa-google"></i> Sign up with Google |
| 82 | +</button> |
| 83 | +<buttonclass="btn btn-oauth"> |
| 84 | +<iclass="fab fa-twitter"></i> Sign up with Twitter |
| 85 | +</button> |
| 86 | +</div> |
| 87 | + |
| 88 | +<divclass="bar"></div> |
| 89 | + |
| 90 | +<formaction="#"> |
| 91 | +<divclass="input-group"> |
| 92 | +<input |
| 93 | +type="text" |
| 94 | +name="" |
| 95 | +id="name" |
| 96 | +class="input-elem" |
| 97 | +placeholder="" |
| 98 | +autocomplete="off" |
| 99 | +/> |
| 100 | +<labelfor="name">Name</label> |
| 101 | +</div> |
| 102 | +<divclass="input-group"> |
| 103 | +<input |
| 104 | +type="email" |
| 105 | +name="" |
| 106 | +id="email" |
| 107 | +class="input-elem" |
| 108 | +placeholder="" |
| 109 | +autocomplete="off" |
| 110 | +/> |
| 111 | +<labelfor="email">Email</label> |
| 112 | +</div> |
| 113 | +<divclass="input-group"> |
| 114 | +<input |
| 115 | +type="password" |
| 116 | +name="" |
| 117 | +id="password" |
| 118 | +class="input-elem" |
| 119 | +placeholder="" |
| 120 | +autocomplete="off" |
| 121 | +/> |
| 122 | +<labelfor="password">Password</label> |
| 123 | +<iclass="fas fa-eye-slash eye"></i> |
| 124 | +</div> |
| 125 | +<divclass="agreements"> |
| 126 | +<inputtype="checkbox"name=""id="terms"/> |
| 127 | +<labelfor="terms"class="gray">Agree to our conditions</label> |
| 128 | +</div> |
| 129 | +<buttonclass="btn btn-register">Sign Up</button> |
| 130 | +</form> |
| 131 | +</div> |
| 132 | +</div> |
| 133 | +</div> |
| 134 | +<scriptsrc="script.js"defer></script> |
| 135 | +</body> |
| 136 | +</html> |