Initial commit
This commit is contained in:
7
24 - HTTP Servers/httpserver/static/bootstrap.min.css
vendored
Normal file
7
24 - HTTP Servers/httpserver/static/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
13
24 - HTTP Servers/httpserver/static/index.html
Normal file
13
24 - HTTP Servers/httpserver/static/index.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Pro Go</title>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link href="bootstrap.min.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="m-1 p-2 bg-primary text-white h2">
|
||||
Hello, World
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
22
24 - HTTP Servers/httpserver/static/store.html
Normal file
22
24 - HTTP Servers/httpserver/static/store.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Pro Go</title>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link href="bootstrap.min.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="m-1 p-2 bg-primary text-white h2 text-center">
|
||||
Products
|
||||
</div>
|
||||
<table class="table table-sm table-bordered table-striped">
|
||||
<thead>
|
||||
<tr><th>Name</th><th>Category</th><th>Price</th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td>Kayak</td><td>Watersports</td><td>$279.00</td></tr>
|
||||
<tr><td>Lifejacket</td><td>Watersports</td><td>$49.95</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
29
24 - HTTP Servers/httpserver/static/upload.html
Normal file
29
24 - HTTP Servers/httpserver/static/upload.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Pro Go</title>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link href="bootstrap.min.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="m-1 p-2 bg-primary text-white h2 text-center">
|
||||
Upload File
|
||||
</div>
|
||||
<form method="POST" action="/forms/upload" class="p-2"
|
||||
enctype="multipart/form-data">
|
||||
<div class="form-group">
|
||||
<label class="form-label">Name</label>
|
||||
<input class="form-control" type="text" name="name">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="form-label">City</label>
|
||||
<input class="form-control" type="text" name="city">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="form-label">Choose Files</label>
|
||||
<input class="form-control" type="file" name="files" multiple>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary mt-2">Upload</button>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user