new forms
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Edit object model • YOPA</title>
|
||||
<script src="../static/bundle.js"></script>
|
||||
<link rel="stylesheet" href="../static/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header class="navbar mb-2 mt-2">
|
||||
<section class="navbar-section">
|
||||
<a href="/" class="navbar-brand text-bold mr-2">
|
||||
Yopa
|
||||
</a><a href="/" class="btn btn-link"><i class="icon icon-home"></i>Home</a></section>
|
||||
<section class="navbar-section">
|
||||
YOPA is the best
|
||||
</section>
|
||||
</header>
|
||||
|
||||
<div class="content"><h1>Edit object model Animal</h1>
|
||||
|
||||
<form action="/model/object/update/0" method="POST">
|
||||
<table>
|
||||
<tr>
|
||||
<th><label for="name">Name:</label></th>
|
||||
<td><input type="text" id="name" name="name" value="Animal" autocomplete="off">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><label for="name_property">Name property:</label></th>
|
||||
<td>
|
||||
<select name="name_property" id="name_property" autocomplete="off">
|
||||
<option value=""></option>
|
||||
|
||||
<option value="11" >carnivore</option>
|
||||
|
||||
<option value="2" >Name</option>
|
||||
|
||||
<option value="12" >weight</option>
|
||||
|
||||
<option value="5" selected>czech name</option>
|
||||
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<input type="submit" value="Save">
|
||||
</form></div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user