97 lines
3.9 KiB
HTML
97 lines
3.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
|
|
<!-- jQuery UI -->
|
|
<link rel="stylesheet" href="source/jquery-ui.min.css">
|
|
<script src="source/jquery-ui.min.js"></script>
|
|
|
|
<!-- Bootstrap Stylesheet & Skript -->
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
<!-- Sidebar Plugin -->
|
|
<link rel="stylesheet" href="plugins/sidebar/leaflet-sidebar.css">
|
|
<script src="plugins/sidebar/leaflet-sidebar.js"></script>
|
|
|
|
|
|
<!-- Button Plugin -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.css">
|
|
<script src="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.js"></script>
|
|
|
|
<!-- Font Plugin -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css">
|
|
|
|
<!-- PolylineMeasure Plugin -->
|
|
<link rel="stylesheet" href="https://ppete2.github.io/Leaflet.PolylineMeasure/Leaflet.PolylineMeasure.css">
|
|
<script src="https://ppete2.github.io/Leaflet.PolylineMeasure/Leaflet.PolylineMeasure.js"></script>
|
|
|
|
<!-- MousePosition Plugin -->
|
|
<link rel="stylesheet" href="plugins/mouseposition/L.Control.MousePosition.css">
|
|
<script src="plugins/mouseposition/L.Control.MousePosition.js"></script>
|
|
|
|
<!-- Geoman Plugin -->
|
|
<link rel="stylesheet" href="https://unpkg.com/@geoman-io/leaflet-geoman-free@latest/dist/leaflet-geoman.css">
|
|
<script src="https://unpkg.com/@geoman-io/leaflet-geoman-free@latest/dist/leaflet-geoman.js"></script>
|
|
|
|
<!-- Minimap Plugin -->
|
|
<link rel="stylesheet" href="plugins/minimap/Control.MiniMap.min.css">
|
|
<script src="plugins/minimap/Control.MiniMap.min.js"></script>
|
|
|
|
<!-- ajax Plugin -->
|
|
<script src="plugins/ajax/leaflet.ajax.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="popup-container">
|
|
|
|
<input type="hidden" name="building_database_id" class="updateBuilding" value="something">
|
|
<input type="hidden" name="account_no_old" class="updateBuilding" value="something">
|
|
|
|
|
|
<div class="popup-form-group">
|
|
<label class="control-label popup-label">Building ID</label>
|
|
<input type="text" class="form-control popup-input text-center updateBuilding" value="something" name="account_no">
|
|
</div>
|
|
|
|
<div class="popup-form-group">
|
|
<label class="control-label popup-label">Category</label>
|
|
<input type="text" class="form-control popup-input text-center updateBuilding" value="something" name="building_category">
|
|
</div>
|
|
|
|
<div class="popup-form-group">
|
|
<label class="control-label popup-label">Storey</label>
|
|
<input type="number" class="form-control popup-input text-center updateBuilding" value="something" name="building_storey">
|
|
</div>
|
|
|
|
<div class="popup-form-group">
|
|
<label class="control-label popup-label">Population</label>
|
|
<input type="number" class="form-control popup-input text-center updateBuilding" value="something" name="building_population">
|
|
</div>
|
|
|
|
<div class="popup-form-group">
|
|
<label class="control-label popup-label">Location</label>
|
|
<input type="text" class="form-control popup-input text-center updateBuilding" value="something" name="building_locationn">
|
|
</div>
|
|
|
|
<div class="popup-button-group">
|
|
<button type="submit" class="btn btn-success popup-button">Update</button>
|
|
<button type="submit" class="btn btn-danger popup-button">Delete</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html> |