-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsell.html
71 lines (59 loc) · 2.55 KB
/
sell.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="generator" content="Shed Shop">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>Shed Shop</title>
<meta name="description" content="Shed Shop - Only the finest sheds">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@thedatashed">
<meta name="twitter:title" content="Data Shed">
<meta name="twitter:description" content="Shed Shop - Only the finest sheds">
<meta name="twitter:image"
content="https://www.thedatashed.co.uk/wp-content/themes/datashed/images/Logo_RGB_web.svg">
<meta property="og:url" content="https://www.fittr.pro">
<meta property="og:type" content="website">
<meta property="og:title" content="fittr.pro">
<meta property="og:description" content="Shed Shop - Only the finest sheds">
<meta property="og:image"
content="https://www.thedatashed.co.uk/wp-content/themes/datashed/images/Logo_RGB_web.svg">
<link rel="icon" href="./images/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="./images/favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<a href="./index.html">
<h1>Shed Shop</h1>
</a>
</header>
<nav>
<ul>
<li><a href="./sell.html">Sell Your Shed</a></li>
<li><a href="./sales.html">See Shed Sales</a></li>
<li><a href="./list.html">See Sheds</a></li>
</ul>
</nav>
<main>
<h2>Sell Your Shed</h2>
<form method="POST" action="https://us-central1-fontend-fun.cloudfunctions.net/save" target="_blank">
<label>Seller Name
<input name="seller" placeholder="Seller name" required>
</label>
<label for="color">Color of the Shed</label>
<input id="color" name="color" type="color" required>
<label for="price">Price of the Shed (£)</label>
<input id="price" name="price" type="number" placeholder="Shed price" required min="0" step="0.00000001">
<button type="reset">reset</button>
<button type="submit">submit</button>
</form>
</main>
<footer>
The Data Shed Limited is a limited company registered in England and Wales. Company Registration No. 8005721
Registered Offices: Mill One, Floor Three, Mabgate Mills, Leeds LS9 7DZ .
</footer>
<noscript>
<h2>Javascript is disabled in your browser.</h2>
</noscript>
</body>
</html>