forked from autkarsh989/ecom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
73 lines (72 loc) · 3.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="assets/css/profile-p.css">
<title>Profile</title>
</head>
<body>
<nav class="navbar">
<div class="container">
<div class="fillkart">
FILLKART
</div>
<div class="nav-links">
<a href="/index.html">Our Products</a>
<a href="#">New Arrivals</a>
<a class="active" href="/profile.html">Sign up/Profile</a>
<a href="./cart.html" class="cart-icon"><i class="fas fa-shopping-cart"></i></a>
</div>
</div>
</nav>
<div class="containers">
<div class="sidebar">
<div class="profile">
<img alt="Profile Picture" height="50" src="https://i.pinimg.com/564x/9e/5b/c0/9e5bc04372764479079dcbd8f0196318.jpg" width="50"/>
<div class="name">
<h5>Hello,</h5>
<p class="user-name" id="user-name">user name</p>
</div>
</div>
</div>
<div class="main-content">
<h2 class="font-bold text-xl md:text-2xl mb-6">
Personal Information
<a class="text-blue-500 text-sm ml-2" href="javascript:void(0);" onclick="enableEditing()">Edit</a>
</h2>
<div class="section">
<input class="input-field border-2 border-gray-300 rounded-lg p-3 w-full mb-4 focus:border-blue-500 focus:ring focus:ring-blue-200 disabled:bg-gray-200" id="first-name" type="text" placeholder="First name" disabled/>
<input class="input-field border-2 border-gray-300 rounded-lg p-3 w-full mb-4 focus:border-blue-500 focus:ring focus:ring-blue-200 disabled:bg-gray-200" id="last-name" type="text" placeholder="last name" disabled/>
</div>
<div class="section">
<label>
Your Gender
</label>
<input id="male" name="gender" type="radio" value="male" disabled/>
Male
<input id="female" name="gender" type="radio" value="female" disabled/>
Female
</div>
<div class="section">
<label>
Mobile Number
</label>
<input class="input-field border-2 border-gray-300 rounded-lg p-3 w-full focus:border-blue-500 focus:ring focus:ring-blue-200 disabled:bg-gray-200" id="mobile-number" type="tel" disabled/>
</div>
<div class="section">
<label>
Manage Addresses
</label>
<input class="input-field border-2 border-gray-300 rounded-lg p-3 w-full focus:border-blue-500 focus:ring focus:ring-blue-200 disabled:bg-gray-200" id="add-address" type="text" placeholder
="➕ ADD A NEW ADDRESS" disabled>
</div>
<button class="save-button" id="save-button" onclick="saveInformation()" disabled>Save</button>
</div>
</div>
</div>
</body>
<script src="assets/js/profile-p.js"></script>
</html>