vanikam/web_ui/templates/inventory/update_customization.html

21 lines
479 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Update Customization | Vanikam</title>
</head>
<body>
<form action="/inventory/product/customization/update" method="post">
<label for="name">
Customization name
<input type="text" name="name" id="name" required>
</label>
<button type="submit">Update Customization</button>
</form>
</body>
</html>