-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshiran.html
111 lines (108 loc) · 2.96 KB
/
shiran.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
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
background-color: rgb(7, 197, 93);
}
.maindiv {
display: flex;
flex-direction: column;
margin-left: 550px;
margin-top: 50px;
}
.js-info {
display: flex;
flex-direction: row;
background-color: rgb(212, 225, 247);
height: 40px;
width: 600px;
align-items: center;
border-radius: 10px;
border: 2px rgb(2, 81, 134) solid;
padding-left: 20px;
color: rgb(5, 18, 101);
font-size: 25px;
font-weight: bold;
position: relative;
margin-top: 30px;
}
.js-info-detail {
color: rgb(65, 2, 78);
font-size: 23px;
padding-top: 4px;
}
.delete-button {
position: absolute;
right: 15px;
background-color: rgb(130, 6, 2);
color: white;
border: 1px rgb(121, 3, 3) solid;
height: 30px;
width: 80px;
border-radius: 10px;
bottom: 4px;
}
.update-button {
position: absolute;
right: 110px;
background-color: rgb(2, 130, 2);
color: white;
border: 1px rgb(3, 65, 3) solid;
height: 30px;
width: 80px;
border-radius: 10px;
bottom: 4px;
}
.delete-button:hover {
cursor: pointer;
transform: scale(1.05);
transition-duration: 0.2s;
}
.update-button:hover {
cursor: pointer;
transform: scale(1.05);
transition-duration: 0.2s;
}
</style>
</head>
<body>
<div class="maindiv">
<div class="js-info">
Name :
<div class="js-info-detail">
<?php echo $_SESSION["username"]."!"; ?>
</div>
<button class="update-button">UPDATE</button>
<button class="delete-button">DELETE</button>
</div>
<div class="js-info">
City :
<div class="js-info-detail">
<?php echo $_SESSION["usercity"]."!"; ?>
</div>
<button class="update-button">UPDATE</button>
<button class="delete-button">DELETE</button>
</div>
<div class="js-info">
E-mail :
<div class="js-info-detail">
<?php echo $_SESSION["useremail"]."!"; ?>
</div>
<button class="update-button">UPDATE</button>
<button class="delete-button">DELETE</button>
</div>
<div class="js-info">
Phone Number :
<div class="js-info-detail">
<?php echo $_SESSION["usertel"]."!"; ?>
</div>
<button class="update-button">UPDATE</button>
<button class="delete-button">DELETE</button>
</div>
</div>
</body>
</html>