-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathplan.php
More file actions
184 lines (163 loc) · 4.42 KB
/
plan.php
File metadata and controls
184 lines (163 loc) · 4.42 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!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" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Plan</title>
</head>
<style>
html {
overflow-x: hidden;
}
#content {
display: flex;
flex-direction: column;
height: 90%;
font-family: "Poppins";
font-style: normal;
font-weight: 500;
font-size: 35px;
padding: 20px;
}
.plan_form {
margin-left: 10%;
width: 70%;
/* background-color: aquamarine; */
}
.event-image {
display: flex;
justify-content: center;
align-items: center;
margin-top: 5%;
}
.ev-img {
display: flex;
justify-content: center;
align-items: center;
background-color: #667080;
color: white;
height: auto;
width: auto;
padding: 2%;
border-radius: 50%;
}
.event-image i {
font-size: 85px;
padding:10px;
/* width: 10%;
height: 10%; */
}
.event_form {
display: flex;
justify-content: center;
align-items: center;
margin-left: 20%;
width: 60%;
/* background-color: brown; */
margin-top: 5%;
padding: 2%;
margin-bottom: 5%;
}
.tag_title {
font-size: 25px;
letter-spacing: 1.5px;
text-transform: capitalize;
font-weight: 600;
color: #1D1E20;
}
.tag-item {
background: #7282fb;
border-radius: 10px;
color: white;
padding: 10px;
/* margin: 10px; */
font-size: 20px;
}
.subject {
display: block;
/* font-size: 18px; */
width: 100%;
}
.subject-text {
font-size: 18px;
}
.btns button {
width: 40%;
height: 62px;
background: #FFFFFF;
border: 2px solid #7282FB;
border-radius: 10px;
font-size: 18px;
}
@media (min-width: 0px) and (max-width: 720px) {
.plan_form {
margin-left: 0% !important;
width: 100% !important;
/* background-color: aquamarine; */
}
.event_form {
margin-left:15% !important;
width: 60%;
}
.tag_title{
font-size:15px !important;
}
.tag-item{
font-size:15px !important;
}
}
</style>
<body>
<!-- Navbar Start -->
<?php
include("navbar.php")
?>
<!-- Navbar End -->
<!-- Contents Start -->
<div id="content">
<!-- Calendar -->
<h4 class="header">Create Plan</h4>
<!-- Other content -->
<div class="plan_form">
<div class="event-image">
<div class="ev-img">
<i class="fa-solid fa-user"></i>
</div>
</div>
<div class="event_form">
<div class="evt-form">
<div class="tags">
<div class="tag_title">Tags</div>
<div class="tag">
<div style="display: inline-block" class="tag-item">Keto Diet</div>
<div style="display: inline-block" class="tag-item">Vegan Diet</div>
<div style="display: inline-block" class="tag-item">Diet Chart</div>
<div style="display: inline-block" class="tag-item">+</div>
</div>
<br>
</div>
<label for="subject" class="subject tag_title">Plan Duration</label>
<input class="subject subject-text" type="datetime-local" name="subject" style="height: 45px;" />
<br />
<label for="subject" class="subject tag_title">Description</label>
<input class="subject " type="text" name="subject" style="height: 79px;" />
<br />
<label for="subject" class="subject tag_title">Price</label>
<input class="subject subject-text" type="text" name="subject" placeholder="Rs. /month"
style="height: 45px;" />
</div>
</div>
<div class="btns">
<button>Select</button>
<button style="float: right;">Save</button>
</div>
<br><br><br>
</div>
</div>
<!-- Contents End -->
</body>
</html>