view src/api/forms.html @ 59:02d8876dc41d

improve change email
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 29 Nov 2022 18:45:22 -0700
parents 31c895b73bd0
children
line wrap: on
line source

<!doctype html>
<html>
	<head>
		<meta name="viewport" content="width=device-width, initial-scale=1">
	</head>
	<body>
		<h1>API Forms</h1>
		<hr>
		<form action="login_email.json">
			<h3>login_email</h3>
			<p>base_url: <input name=base_url type=url required></p>
			<p>from: <input name=from required></p>
			<p>email: <input name=email type=email required></p>
			<p>password: <input name=password required></p>
			<p><input type=submit></p>
		</form>
		<hr>
		<form action="change_email_1.json">
			<h3>change_email_1</h3>
			<p>base_url: <input name=base_url type=url required></p>
			<p>from: <input name=from required></p>
			<p>to: <input name=to type=email required></p>
			<p>email: <input name=email type=email required></p>
			<p>password: <input name=password required></p>
			<p><input type=submit></p>
		</form>
		<hr>
		<form action="change_email_2.json">
			<h3>change_email_2</h3>
			<p>base_url: <input name=base_url type=url required></p>
			<p>from: <input name=from required></p>
			<p>to: <input name=to type=email required></p>
			<p>password: <input name=password required></p>
			<p><input type=submit></p>
		</form>
		<hr>
	</body>
</html>