-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcreate_adv.html
More file actions
61 lines (36 loc) · 1.54 KB
/
create_adv.html
File metadata and controls
61 lines (36 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="create_adv_style.css">
</head>
<body>
<?php
$name ="";
$price ="";
$phone="";
?>
<div class="container">
<div class="col-md-6">
<div id="logbox">
<form id="signup" method="post" action="signup.php">
<h1>create an account</h1>
<input name="title_adv" type="text" placeholder="Title of Adverisement " class="input pass" autofocus="autofocus" value="<?php echo $name; ?>"/>
<input name="price" type="number" placeholder="Price you want ?" class="input pass" value = "<?php echo $price; ?>" />
<input name="phone" type="number" placeholder="Phone Number" class="input pass" value = "<?php echo $phone; ?>" />
<textarea rows="4" cols="20" placeholder="Describe product in 200 characters" required="required" class="input pass">
</textarea>
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Submit!" class="inputButton"/>
</form>
</div>
</div>
<!--col-md-6 -->
</div>
</body>
</html>