25 lines
539 B
HTML
25 lines
539 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 Email | Vanikam</title>
|
|
</head>
|
|
<body>
|
|
|
|
<form action="/owner/user/email/update" method="post">
|
|
<label for="email">
|
|
Email
|
|
<input type="email" name="email" id="email">
|
|
</label>
|
|
|
|
<label for="password">
|
|
Password
|
|
<input type="password" name="password" id="password">
|
|
</label>
|
|
|
|
<button type="submit">Update</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|