-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
120 lines (106 loc) · 4.87 KB
/
signup.php
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
<?php include('server.php'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="signup.css">
<link rel="stylesheet" type="text/css" href="mainEstateLibya.css">
<title>تسجيل حساب جديد</title>
</head>
<body>
<header>
<div class="topnav" id="myTopnav">
<a href="mainEstateLibya.php">
<img src="img/home.png" alt="logo" style="float: right;" width="30px" height="25px">
عقارات ليبيا
</a>
<a href="mainEstateLibya.php" ><strong>الرئيسية</strong></a>
<div class="dropdown">
<button class="dropbtn"><strong>الخصائص</strong>
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="#البحث بواسطة السعر">البحث بواسطة السعر</a>
<a href="#البحث بواسطة المدينة">البحث بواسطة المدينة</a>
<a href="#البحث بواسطة النوع">البحث بواسطة النوع</a>
</div>
</div>
<a href="agents.php"><strong>الوكلاء العقاريين</strong></a>
<li><a href="#ContactUs"><strong>اتصال بنا</strong></a></li>
<li><a href="about.php"><strong>حول الموقع</strong></a></li>
<li><a href="signup.php" class="active"><strong>انشئ حساب جديد</strong></a></li>
<li><a href="mainEstateLibya.php"><strong>تسجيل الدخول</strong></a></li>
<!-- <a href="javascript:void(0);" class="icon" onclick="myFunction()">☰</a>-->
<a href="javascript:void(0);" style="font-size:15px" class="icon" onclick="manubar()">☰</a>
</div>
<div class="slideshow-container">
<div class="mySlides fade">
<img src="img/تصميم-موقع-شركة-عقارات.jpg" width="100%" height="470px" >
</div>
</div>
<script src="JS.js"></script>
</header>
<div class="header">
<h2>تسجيل حساب جديد</h2>
</div>
<form method="post" action="signup.php">
<!-- display validation errors here-->
<?php include('errors.php'); ?>
<div class="input-group">
<label>اسم المستخدم</label>
<input type="text" name="username" placeholder="اسم المستخدم" value="<?php echo $username; ?>">
</div>
<div class="input-group">
<label>البريد الإلكترونى</label>
<input type="text" name="email" placeholder="البريد الإلكترونى" value="<?php echo $email; ?>">
</div>
<div class="input-group">
<label>كلمة المرور</label>
<input type="password" placeholder="كلمة المرور" name="password">
</div>
<div class="input-group">
<label>تأكيد كلمة المرور</label>
<input type="password" placeholder="تأكيد كلمة المرور" name="Confirm_Password">
</div>
<div class="input-group">
<button type="submit" name="register" class="btn">تسجيل</button>
</div>
</form>
<footer class="footer-distributed" id="ContactUs">
<div class="footer-left">
<p class="footer-company-about">
<span>حول الموقع</span>
هذ موقع إعداد وليد الشيبانى فحيج
يعتبر مشروع فصلى تم إعداده فى خريف 2018
موقع للبيع وايجار العقارات فى ليبيا
</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p>اتصال بنا</p>
</div>
<div>
<i class="fa fa-phone"></i>
<p>0921234567 رقم هاتف</p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href="[email protected]">[email protected]</a></p>
</div>
</div>
<div class="footer-right">
<h3> ليبيا <span> عقارات </span></h3>
<p class="footer-links">
<a href="#">الصفحة الرئيسية</a>
<a href="#">الوكلاء العقاريين</a>
<a href="#">حول الموقع</a>
<a href="#">اتصال بنا</a>
<a href="#">انشئ حساب جديد</a>
</p>
<p class="footer-company-name">حقوق محفوظ لصاحب موقع وليد فحيج © 2019</p>
</div>
</footer>
</body>
</html>