-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadmin.html
47 lines (41 loc) · 1.64 KB
/
admin.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin</title>
<link rel="stylesheet" href="admin.css">
<body>
<div id="Login">
<!-- <div>
<h2>Welcome admin</h2>
<div><button>Log Out</button></div>
</div> -->
<h2>Admin Login</h2>
<div><input type="text" id="admin-id" placeholder="enter your id" value="abhinav"></div>
<div><input type="password" id="admin-pass" placeholder="enter your password" value="admin"></div>
<div><button id="login-button">Login </button> <br><button id="index-button">Index Page</button></div>
</div>
<div id="container">
<div id="left">
<div id="success">
<!-- Later, append this to left div -->
<!-- <div id="add" class='work' data-id=1>Add</div>
<div id="update" class='work' data-id=2>Update </div>
<div id="delete" class='work' data-id=3>Delete </div>-->
</div>
<div id="form_div"></div>
</div>
<div id="right">
<div id="view_data">
<!-- <div><img src="" alt="img1"></div>
<div><span class="pro_property">pro_property: </span><br><span class="prop_value"> value </span></div> -->
</div>
<div id="final_submit_div">
<!-- <div><button>Add or update or delete</button></div> -->
</div>
</div>
</div>
</body>
<script src="admin.js"></script>