-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgiris_yap.html
125 lines (122 loc) · 3.54 KB
/
giris_yap.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style/style.css" />
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<script src="./script/script.js"></script>
<title></title>
</head>
<body>
<nav class="nav-active">
<a href="/" class="logo"></a>
<ul>
<li>
<a class="nav-item" href="./pages/ucak.html">
<p>Uçak</p>
</a>
</li>
<li>
<a class="nav-item" href="./pages/oteller.html">
<p>Otel</p>
</a>
</li>
<li>
<a class="nav-item" href="./pages/turlar.html">
<p>Tur</p>
</a>
</li>
<li>
<a class="nav-item" href="./pages/kampanyalar.html">Kampanyalar</a>
</li>
</ul>
<div class="icons">
<a href="./kayit_ol.html">
<p>Kayıt Ol</p>
</a>
<a href="./giris_yap.html" class="bg-black">
<p>Giriş Yap</p>
<i class="ph ph-arrow-up-right"></i>
</a>
</div>
</nav>
<div class="page-title">
<b>Giriş Yap</b>
</div>
<div class="content">
<div class="kayit">
<form action="">
<label for="">E-Mail</label>
<input type="email" placeholder="E-Mail" />
<label for="">Şifre</label>
<input type="password" placeholder="Şifre" />
<button>Giriş Yap</button>
<center>
<a href="">Şifreni mi unuttun?</a>
<a href="/kayit_ol.html"><b>Kayıt Ol</b></a>
</center>
</form>
</div>
</div>
<footer>
<img src="./assets/logo.png" width="200px" />
<div class="footer-menu">
<div class="footer-list">
<h3>Oteller</h3>
<a href="">İstanbul Otelleri</a>
<a href="">Ankara Otelleri</a>
<a href="">Denizli Otelleri</a>
<a href="">İzmir Otelleri</a>
<a href="">Kocaeli Otelleri</a>
</div>
<div class="footer-list">
<h3>Turlar</h3>
<a href="">Avrupa Turu</a>
<a href="">Balkan Turu</a>
<a href="">Karadeniz Turu</a>
<a href="">Ege Turu</a>
<a href="">Anadolu Turu</a>
</div>
<div class="footer-list">
<h3>Popüler Şehirler</h3>
<a href="">İstanbul</a>
<a href="">Ankara</a>
<a href="">Denizli</a>
<a href="">İzmir</a>
<a href="">Kocaeli</a>
</div>
<div class="footer-list">
<h3>Kurumsal</h3>
<a href="">Biz Kimiz?</a>
<a href="">İletişim</a>
<a href="">Ödüllerimiz</a>
<a href="">Gizlilik Politikası</a>
<a href="">Kişisel Verilerin Korunması</a>
</div>
<div class="footer-contact">
<b>Mail</b>
<a href="" class="mail">@gmail.com</a>
<b>Telefon</b>
<a href="" class="tel">+90 (544) 444 4444</a>
<b>Sosyal Medya</b>
<div class="social">
<a href="">
<i class="ph ph-facebook-logo"></i>
</a>
<a href="">
<i class="ph ph-instagram-logo"></i>
</a>
<a href="">
<i class="ph ph-twitter-logo"></i>
</a>
</div>
</div>
</div>
<div class="create">
<p>created by</p>
<a href="">erayjs</a>
</div>
</footer>
</body>
</html>