| 
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>
 | 
| 
58
 | 
    18 		<form action="change_email_1.json">
 | 
| 
 | 
    19 			<h3>change_email_1</h3>
 | 
| 
 | 
    20 			<p>base_url: <input name=base_url type=url required></p>
 | 
| 
 | 
    21 			<p>from: <input name=from required></p>
 | 
| 
 | 
    22 			<p>to: <input name=to type=email required></p>
 | 
| 
 | 
    23 			<p>email: <input name=email type=email required></p>
 | 
| 
 | 
    24 			<p>password: <input name=password required></p>
 | 
| 
 | 
    25 			<p><input type=submit></p>
 | 
| 
 | 
    26 		</form>
 | 
| 
 | 
    27 		<hr>
 | 
| 
 | 
    28 		<form action="change_email_2.json">
 | 
| 
 | 
    29 			<h3>change_email_2</h3>
 | 
| 
57
 | 
    30 			<p>base_url: <input name=base_url type=url required></p>
 | 
| 
 | 
    31 			<p>from: <input name=from required></p>
 | 
| 
 | 
    32 			<p>email: <input name=email type=email required></p>
 | 
| 
 | 
    33 			<p>password: <input name=password required></p>
 | 
| 
 | 
    34 			<p><input type=submit></p>
 | 
| 
 | 
    35 		</form>
 | 
| 
 | 
    36 		<hr>
 | 
| 
6
 | 
    37 	</body>
 | 
| 
 | 
    38 </html>
 |