colouring-montreal/frontend/building-edit.html
2018-08-09 16:41:30 +01:00

140 lines
5.4 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Colouring London</title>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css"
integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin=""/>
<link rel="stylesheet" href="main.css">
</head>
<body>
<p class="beta-banner" role="alert" >
Welcome to the prototype (beta) site for Colouring London. <a
href="http://colouringlondon.org">Find out more about the project.</a>
</p>
<header class="main-header">
<nav class="navbar navbar-light navbar-expand-md">
<a href="index.html" class="logo navbar-brand" id="top">
<div class="grid">
<div class="row">
<div class="cell"></div>
<div class="cell"></div>
<div class="cell"></div>
<div class="cell"></div>
</div>
<div class="row">
<div class="cell"></div>
<div class="cell"></div>
<div class="cell"></div>
<div class="cell"></div>
</div>
<div class="row">
<div class="cell"></div>
<div class="cell"></div>
<div class="cell"></div>
<div class="cell"></div>
</div>
</div>
<h1 class="logotype">
<span>Colouring</span>
<span>London</span>
</h1>
</a>
<ul class="navbar-nav ml-auto">
<li class="nav-item active"><a href="maps.html" class="nav-link">View Maps</a></li>
<li class="nav-item"><a href="about.html" class="nav-link">About</a></li>
<li class="nav-item"><a href="404.html" class="nav-link">Log in</a></li>
<li class="nav-item"><a href="404.html" class="nav-link">Sign up</a></li>
</ul>
</nav>
</header>
<main class="beta">
<div id="map"></div>
<div id="legend" class="info-container">
<h2 class="h2">Edit building data</h2>
<form action="building-view.html" method="GET">
<fieldset class="data-section">
<legend
class="h3 bullet-prefix location toggled-on"
data-toggle="collapse"
data-target="#data-list-location">Location</legend>
<div id="data-list-location" class="data-list collapse show">
<label for="">Building name</label>
<input class="form-control" type="text" value="">
<label for="">Building number</label>
<input class="form-control" type="text" value="">
<label for="">Street</label>
<input class="form-control" type="text" value="">
<label for="">Address line 2</label>
<input class="form-control" type="text" value="">
<label for="">Town</label>
<input class="form-control" type="text" value="">
<label for="">Postcode</label>
<input class="form-control" type="text" value="">
</div>
</fieldset>
<fieldset class="data-section">
<legend
class="h3 bullet-prefix age"
data-toggle="collapse"
data-target="#data-list-age">Age</legend>
<div id="data-list-age" class="data-list collapse">
<label for="">Year built (best estimate)</label>
<input class="form-control" type="number" step="1" value="2018">
<label for="">Year built (upper estimate)</label>
<input class="form-control" type="number" step="1" value="2018">
<label for="">Year built (lower estimate)</label>
<input class="form-control" type="number" step="1" value="2018">
<label for="">Facade date</label>
<input class="form-control" type="number" step="1" value="">
<label for="">Source</label>
<input class="form-control" type="text">
</div>
</fieldset>
<fieldset class="data-section">
<legend
class="h3 bullet-prefix size"
data-toggle="collapse"
data-target="#data-list-size">Size</legend>
<div id="data-list-size" class="data-list collapse">
<label for="">Attic storeys</label>
<input class="form-control" type="number" step="1" value="0">
<label for="">Core storeys</label>
<input class="form-control" type="number" step="1" value="3">
<label for="">Basement storeys</label>
<input class="form-control" type="number" step="1" value="1">
</div>
</fieldset>
<fieldset class="data-section">
<legend
class="h3 bullet-prefix like"
data-toggle="collapse"
data-target="#data-list-like">Like Me!</legend>
<div id="data-list-like" class="data-list collapse">
<label for="">Like this building?</label>
<div class="form-check">
<input class="form-check-input position-static" type="checkbox" checked>
</div>
</div>
</fieldset>
<div class="buttons-container">
<a href="/building-view.html" class="btn btn-secondary">Cancel</a>
<button type="submit" class="btn btn-primary">Save</button>
</div>
</form>
</div>
</main>
<script src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js"
integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw=="
crossorigin=""></script>
<script src="main.js"></script>
</body>
</html>