How to insert Login form on any page or part of wapaxo and wapkiz websites.
The wapkiz sites have a user system, where' they can create an account and start sections on the site, for this it is necessary to have a page for us to login, the link is "https://YOUR_SITE/site_login.html".
In addition to this page, we can insert the form with a small code below.
:login:
With this code, we insert a form for us to start the Login, then you can style it with css in your style page.
Now, suppose you want to put classes in the inputs and style it, maybe because you use bootstrap or another framework for example, you can insert the source code of the login form, code below.
<form action="/site_login.html" method="post">
<input type="text" name="user_name_" class="YOUR CLASSE" value="">
<input type="password" name="password_" class="YOUR CLASS" value="">
<input type="submit" value="Submit" name="login_user" >
</form>
NOTE: In the code above, the "name" of the inputs is essential and do not change it, otherwise the login will not be performed.
The error message on the form, such as password failure will be shown on the Login page itself, the page "/site_login.html" with the tag %notify%.