-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditSchool.html
More file actions
34 lines (31 loc) · 1.38 KB
/
editSchool.html
File metadata and controls
34 lines (31 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<title>Luncher</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<body>
<div class="nav">
<h2>Luncher<h2>
<button class="login">Login</button>
</div>
<div class="edit-school-wrap">
<form>
<span>School Name</span>
<input type="text" placeholder="School Name">
<span>Address</span>
<input type="text" placeholder="123 Address St.">
<span>City</span>
<input type="text" placeholder="City">
<span>State</span>
<input type="text" placeholder="State">
<span>Description</span>
<input type="text" placeholder="Maecenas vel pulvinar leo. Vivamus imperdiet nulla felis, a accumsan mauris dictum sed. Donec at sagittis sapien. Vestibulum dictum consectetur mi, vitae tempor felis laoreet ut. Ut eget tempor mauris, ac tempus lacus. Integer venenatis augue maximus, rutrum urna a, venenatis mi. Etiam vel mi pellentesque eros lacinia volutpat vel nec nisi. Suspendisse potenti.">
<span>Donation Goal</span>
<input type="text" placeholder="5000">
<button type="submit" class="submit">Submit</button>
</form>
</div>
</body>
</html>