| 6 | 1 <!doctype html> | 
|  | 2 <html> | 
|  | 3 	<head> | 
|  | 4 		<meta name="viewport" content="width=device-width, initial-scale=1"> | 
|  | 5 	</head> | 
|  | 6 	<body> | 
|  | 7 		<h1>API Forms</h1> | 
|  | 8 		<hr> | 
|  | 9 		<form action="login_email.json"> | 
|  | 10 			<h3>login_email</h3> | 
|  | 11 			<p>base_url: <input name=base_url type=url required></p> | 
|  | 12 			<p>from: <input name=from required></p> | 
|  | 13 			<p>email: <input name=email type=email required></p> | 
|  | 14 			<p>password: <input name=password required></p> | 
|  | 15 			<p><input type=submit></p> | 
|  | 16 		</form> | 
|  | 17 		<hr> | 
| 57 | 18 		<form action="change_email.json"> | 
|  | 19 			<h3>change_email</h3> | 
|  | 20 			<p>base_url: <input name=base_url type=url required></p> | 
|  | 21 			<p>from: <input name=from required></p> | 
|  | 22 			<p>email: <input name=email type=email required></p> | 
|  | 23 			<p>password: <input name=password required></p> | 
|  | 24 			<p><input type=submit></p> | 
|  | 25 		</form> | 
|  | 26 		<hr> | 
| 6 | 27 	</body> | 
|  | 28 </html> |