view src/api/forms.html @ 57:169ac5fdb320

add change email
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 28 Nov 2022 23:47:19 -0700
parents 9166f6a14021
children 31c895b73bd0
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.json">
			<h3>change_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>
	</body>
</html>