Mercurial Hosting > freedit
view src/api/forms.html @ 61:389e5d8e5f8a default tip
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 06 Dec 2022 13:37:25 -0700 |
parents | 02d8876dc41d |
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>