forked from hrutik2/heady-rabbits-8957
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcardDetail.html
81 lines (81 loc) · 2.54 KB
/
cardDetail.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Card Page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./css/cardDetail.css">
</head>
<body>
<div class="up",id="navupdiv">
<div class="up" id="navup">
<div id="logo">logo</div>
<p> Card Details </p>
</div>
</div>
<div class="up" id="navdown">
<div id="navsymbol"><i class="fa fa-arrow-left"></i>
</div>
<ul>
<li>home</li>
<li>profile</li>
</ul>
</div>
<!-- <div id="search"><select name="" id="select">
<option value="">select</option>
<option value="name">Name</option>
<option value="address">Adress</option>
</select><input type="search" name="" id="search">
<button>Search</button>
</div> -->
<div class="container">
<div class="section1">
<div class="box">
<h4>Add User</h4>
<input type="text" id="newusername">
<input type="text" id="newuseremail">
<input type="text" id="newuserpassword">
<input type="text" id="newuseraadhar">
<input type="text" id="newuseradress">
<input type="text" id="newusermobileno">
<input type="text" id="newusercardno"><br>
<button id="adduser" class="secbtn">Add User</button>
</div>
<div class="box">
<h4>Update User</h4>
<input type="text" id="updateid">
<input type="text" id="updateusername">
<input type="text" id="updateuseremail">
<input type="text" id="updateuserpassword">
<input type="text" id="updateuseraadhar">
<input type="text" id="updateuseradress">
<input type="text" id="updateusermobileno">
<input type="text" id="updateusercardno"><br>
<button id="userupdate" class="secbtn">Update User</button>
</div>
<!-- sortfunction -->
</div>
<div class="section2">
<table>
<thead>
<tr id="header">
<th>id</th>
<th>name</th>
<th>email</th>
<th>password</th>
<th>aadhar</th>
<th>address</th>
<th>mobileno</th>
<th>cardno</th>
<th>Edit</th>
<th>Delete</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</body>
</html>
<script src="./js/cardDetail.js"></script>