-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
41 lines (38 loc) · 1.96 KB
/
signup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="input.css">
<title>Sign Up</title>
</head>
<body class="md:bg-gray-200">
<div class="container shadow-2xl">
<a href="index.html"><img src="https://www.oneplus.com/content/dam/oasis/page/common/logo/OnePlus_Logo.png"
alt="logo" class="w-20 m-auto active:scale-105"></a>
<div class="heading">
<h1 class="font-semibold text-xl mt-2 mb-2">OnePlus Account</h1>
<p class="px-16 text-sm pb-12">Enjoy all of OnePlus services through an integrated OnePlus account</p>
</div>
<div class="form">
<input type="text" class="w-3/5 pb-6 focus:outline-none sm:px-8 md:px-14 lg:px-28 xl:px-40"
placeholder="Email">
<input type="text" class="w-3/5 pb-6 focus:outline-none sm:px-8 md:px-14 lg:px-28 xl:px-40"
placeholder="Password">
<input type="text" class="w-3/5 pb-3 focus:outline-none sm:px-8 md:px-14 lg:px-28 xl:px-40"
placeholder="Confirm Password">
<!-- <a href="#" class="pb-4 text-red-400 hover:text-red-500 hover:font-bold sm:my-2">Forgot Password?</a> -->
<div class="btn">
<a href="signup.html" class="mx-2"><button>SIGN UP</button></a>
</div>
<a href="login.html" class="pb-1 text-red-400 hover:text-red-500 hover:font-bold mt-4">Already Have a account ?</a>
<div class="btn2">
<button><img src="img/google.png" class="w-7 float-left ml-3" alt="">LOGIN WITH GMAIL</button>
<hr class="mt-3">
<button><img src="img/facebook.png" class="w-7 float-left ml-3" alt="">LOGIN WITH FACEBOOK</button>
</div>
</div>
</div>
</body>
</html>