-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (58 loc) · 2.05 KB
/
index.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Kayıt Ol - Giriş Yap</title>
<link rel="icon" type="image/x-icon" href="images/ico.ico">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Arvo" rel="stylesheet">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css'>
</head>
<body>
<div class="container" id="container">
<div class="form-container sign-up-container">
<form action="#">
<h1>Kayıt Ol</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>
</div>
<span>Sosyal medya hesapların ile yada e-mail hesabın kayıt ol</span>
<input type="text" placeholder="İsim" />
<input type="email" placeholder="E-mail" />
<input type="password" placeholder="Şifre" />
<button>Kayıt Ol</button>
</form>
</div>
<div class="form-container sign-in-container">
<form action="#">
<h1>Giriş Yap</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>
</div>
<span>Sosyal medya hesapların ile yada site hesabın ile</span>
<input type="email" placeholder="E-mail" />
<input type="password" placeholder="Şifre" />
<a href="#">Şifreni mi unuttun?</a>
<button>Giriş Yap</button>
</form>
</div>
<div class="overlay-container">
<div class="overlay">
<div class="overlay-panel overlay-left">
<h1>Tekrar Hoş Geldin</h1>
<p>Kişisel verilerine ulaşmak için giriş yap</p>
<button class="ghost" id="signIn">Giriş Yap</button>
</div>
<div class="overlay-panel overlay-right">
<h1>Merhaba Yabancı</h1>
<p>Kişisel verilerini saklamak için kayıt olmaya ne dersin?</p>
<button class="ghost" id="signUp">Kayıt Ol</button>
</div>
</div>
</div>
</div>
<script src="script.js" charset="utf-8"></script>
</body>
</html>