25 lines
535 B
HTML
25 lines
535 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Create Store | Vanikam</title>
|
|
</head>
|
|
<body>
|
|
|
|
<form action="/owner/store" method="post">
|
|
<label for="name">
|
|
Store name
|
|
<input type="text" name="name" id="name" required>
|
|
</label>
|
|
|
|
<label for="address">
|
|
Address
|
|
<input type="text" name="address" id="address">
|
|
</label>
|
|
|
|
<button type="submit">Create Store</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|