71 lines
1.8 KiB
HTML
71 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Adding</title>
|
|
<style>
|
|
td {
|
|
outline: black 1px solid;
|
|
margin: 2px;
|
|
padding: 2px;
|
|
}
|
|
.col {
|
|
width: 32%;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="col">
|
|
<h1>Add asset</h1>
|
|
<form action="javascript:add_asset()">
|
|
<label for="asset-serial">Serial:</label>
|
|
<input type="text" name="asset-serial" id="asset-serial">
|
|
<br>
|
|
<br>
|
|
<label for="asset-category">Category:</label>
|
|
<select name="asset-category" id="asset-category">
|
|
<option value="LAPTOP">Laptop</option>
|
|
<option value="IPAD">iPad</option>
|
|
</select>
|
|
<br>
|
|
<br>
|
|
<label for="asset-model">Model:</label>
|
|
<select name="asset-model" id="asset-model" disabled="disabled">
|
|
<option value="AIR_M1">Air M1</option>
|
|
<option value="AIR_M2">Air M2</option>
|
|
<option value="PRO_M1">Pro M1</option>
|
|
<option value="PRO_M2">Pro M2</option>
|
|
</select>
|
|
<br>
|
|
<br>
|
|
<button>Submit</button>
|
|
|
|
</form>
|
|
</div>
|
|
<div class="col">
|
|
<h1>Add user</h1>
|
|
</div>
|
|
<div class="col">
|
|
<h1>Add access card</h1>
|
|
</div>
|
|
<div class="col">
|
|
<h1>Modify asset</h1>
|
|
</div>
|
|
<div class="col">
|
|
<h1>Modify user</h1>
|
|
</div>
|
|
<div class="col">
|
|
<h1>Modify access card</h1>
|
|
</div>
|
|
|
|
<script src="add.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |