-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettingsview.php
More file actions
executable file
·64 lines (55 loc) · 1.51 KB
/
settingsview.php
File metadata and controls
executable file
·64 lines (55 loc) · 1.51 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Settings</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.4/css/fontawesome.min.css" integrity="sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<?php include 'includes/header1.php';?>
<main>
<div class="log">
<div>
<a href="update-process.php">
<button class="button">Click to User Details Settings</button>
</a>
</div>
<div>
<a href="useritemview.php">
<button class="button">User Items Settings</button>
</a>
</div>
</div>
</main>
<?php include 'includes/footer.php';?>
</body>
<style type="text/css">
button{
border: 2px solid #4CAF50; /* Green */
padding: 20px;
width: 360px;
margin: 5px;
background-color: coral;
transition: all 0.3s;
font-size:24px;
}
.button:hover {background-color: #3e8e41}
.button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.log{
background-color: papayawhip;
margin:150px 0px 50px 450px;
width: 400px;
padding: 20px;
position: absolute;
left: 0;
right: 0;
}
</style>
</html>