-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
103 lines (93 loc) · 5.53 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ankelba</title>
<link href="dist/tailwind.css" rel="stylesheet">
</head>
<body>
<header class="bg-gradient-to-r from-pink-400 via-purple-500 to-purple-300 text-white py-12 flex justify-between items-center p-10">
<section class="pt-12">
<i class="text-4xl">Ankelba</i>
</section>
<section class="hidden lg:flex items-center space-x-3 pt-12 justify-center"> <!-- Centered for desktop -->
<a href="home.html" class="w-24 hover:bg-green-600 flex items-center justify-center">Home</a>
<a href="profile.html" class="w-24 hover:bg-green-600 flex items-center justify-center">Profile</a>
<a href="users-dashboard.html" class="w-24 hover:bg-green-600 flex items-center justify-center">User's Dashboard</a>
<a href="about.html" class="w-24 hover:bg-green-600 flex items-center justify-center">About us</a>
<a href="contact.html" class="w-24 hover:bg-green-600 flex items-center justify-center">Contact</a>
</section>
<section class="hidden lg:flex space-x-3 pt-12">
<a href="login.html" class="w-24 hover:bg-green-600 flex items-center justify-center">Login</a>
<a href="signup.html" class="w-24 hover:bg-green-600 flex items-center justify-center">Sign up</a>
</section>
<section class="lg:hidden flex flex-col items-end"> <!-- Display for small screens -->
<button id="hamburger" class="text-white focus:outline-none">
<svg class="h-6 w-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
<div class="hidden flex flex-col items-end space-y-2" id="mobile-links"> <!-- Adjusted styling -->
<a href="home.html" class="w-24 hover:bg-green-600 flex items-start mr-12">Home</a>
<a href="profile.html" class="w-24 hover:bg-green-600 flex items-start mr-12">Profile</a>
<a href="users-dashboard.html" class="w-24 hover:bg-green-600 flex items-start mr-12">User's Dashboard</a>
<a href="about.html" class="w-24 hover:bg-green-600 flex items-start mr-12">About us</a>
<a href="contact.html" class="w-24 hover:bg-green-600 flex items-start mr-12">Contact</a>
<a href="login.html" class="w-24 hover:bg-green-600 flex items-start mr-12">Login</a>
<a href="signup.html" class="w-24 hover:bg-green-600 flex items-start mr-12">Sign up</a>
</div>
</section>
</header>
<div id="editmyModal" class="modal">
<form class="flex flex-col p-4 bg-white rounded-lg shadow-lg" onsubmit="event.preventDefault(); updateUser();">
<label class="text-lg font-semibold mb-2" for="editname">Name:</label>
<input class="border rounded p-2 mb-4" type="text" id="editname" required>
<label class="text-lg font-semibold mb-2" for="editemail">Email:</label>
<input class="border rounded p-2 mb-4" type="email" id="editemail" required>
<label class="text-lg font-semibold mb-2" for="editpass">Password:</label>
<input class="border rounded p-2 mb-4" type="password" id="editpass" required>
<label class="text-lg font-semibold mb-2" for="editphonenumber">Phone Number:</label>
<input class="border rounded p-2 mb-4" type="text" id="editphonenumber" required>
<div class="flex justify-between">
<button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded" type="submit">Save Changes</button>
<button class="bg-red-500 hover:bg-red-600 text-white px-4 py-2 rounded" onclick="deleteUser()">Delete Account</button>
</div>
</form>
</div>
<footer class="flex-container text-white flex flex-wrap justify-between pr-12 bg-gradient-to-r from-pink-400 via-purple-500 to-purple-300 animate-wave">
<section class="w-full sm:w-auto flex-shrink-0">
<pre>
We are really happy
to have you by our side,
happy to work with you!
</pre>
</section>
<section class="w-full sm:w-auto flex-shrink-0">
<address>
<pre>
call us:
+251908030809
+251974977967
+251991478188
</pre>
</address>
<section class="flex pl-12 ml-12 pt-12 pb-8 rounded-full">
<a href=https://t.me/LDT222><img class="w-12 h-12 mr-5 rounded-full" src="images/telegram.jpg" alt="telegram icon"></a>
<a href="https://instagram.com/_l_i_y_u_?igshid=OGQ5ZDc2ODk2ZA=="><img class="w-12 h-12 mr-5 rounded-full" src="images/instagram.jpg" alt="instagram icon"></a>
<a href="https://wa.me/qr/VB2TKESWYO2KP1"><img class="w-12 h-12 rounded-full" src="images/whatsapp.jpg" alt="whatsapp icon"></a>
</section>
</section>
<section class="pr-4 flex-shrink-0 mr-12">
<pre>
About us
Contact
Privacy policy
Help
</pre>
</section>
</footer>
<script src="profile.js"></script>
<script src="script.js"></script>
</body>
</html>