-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost-service.html
118 lines (109 loc) · 5.18 KB
/
post-service.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
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="el">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0">
<title>POST A SERVICE | BOOKIT</title>
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/fontawesome/css/fontawesome.min.css">
<link rel="stylesheet" href="assets/fonts/fontawesome/css/all.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/style_post_service.css">
</head>
<body class="home-page bg-one">
<div class="main-wrapper">
<div id="header-container"></div>
<div class="bread-crumb-bar">
<div class="container">
<div class="row align-items-center inner-banner">
<div class="col-md-12 col-12 text-center">
<div class="breadcrumb-list">
<nav aria-label="breadcrumb" class="page-breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="index.html">
<img src="assets/img/home-icon.svg" alt="Home"> Home </a>
</li>
<li class="breadcrumb-item" aria-current="page">Post a service</li>
</ol>
</nav>
</div>
</div>
</div>
</div>
</div>
<div class="content">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="select-project mb-4">
<form id="post-service">
<div class="title-box widget-box">
<div class="title-content">
<div class="title-detail">
<h3>Service title</h3>
<div class="form-group mb-0">
<input id="title" type="text" class="form-control" placeholder="Enter Service title">
</div>
</div>
</div>
<div class="title-content">
<div class="title-detail">
<h3>Category</h3>
<div class="form-group mb-0">
<select class="form-control select" id="category">
<option value="0">--Select category --</option>
<option value="1">Accounting</option>
<option value="2">Cleaning</option>
<option value="3">Plumbing</option>
<option value="4">Fitness</option>
</select>
</div>
</div>
</div>
<div class="title-content">
<div class="title-detail">
<h3>Pricing Type</h3>
<div class="form-group price-cont mb-0" >
<select name="price" class="form-control select" id="price_type">
<option value="0">--Select price type --</option>
<option value="1">Per hour</option>
<option value="2">Per day</option>
<option value="3">Per service</option>
</select>
</div>
</div>
</div>
<div class="title-content">
<div class="title-detail">
<h3>Add picture</h3>
<div class="custom-file">
<input type="file" class="custom-file-input" id="picture">
<label class="custom-file-label"></label>
</div>
</div>
</div>
<div class="title-content pb-0">
<div class="row">
<div class="col-md-12 text-end">
<div class="btn-item">
<button type="button" class="btn next-btn" onClick="postService()">Submit</button>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div id="footer"></div>
</div>
<script src="assets/js/jquery-3.6.1.min.js"></script>
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>