Difference between revisions of "Implement login form into your website"

From Kolmisoft Wiki
Jump to navigationJump to search
(New page: Use such form: <form action="http://your_mor_gui_host/billing/callc/try_to_login" method="post"> <input class="input" id="login_username" name="login[username]" size="11" type=...)
 
Line 1: Line 1:
Use such form:
Use such form:


 
<nowiki>
     <form action="http://your_mor_gui_host/billing/callc/try_to_login" method="post">
     <form action="http://your_mor_gui_host/billing/callc/try_to_login" method="post">
       <input class="input" id="login_username" name="login[username]" size="11" type="text" />
       <input class="input" id="login_username" name="login[username]" size="11" type="text" />
Line 10: Line 10:
       <input name="commit" type="submit" value="Login" />
       <input name="commit" type="submit" value="Login" />
     </form>
     </form>
</nowiki>

Revision as of 11:50, 10 July 2009

Use such form:

<form action="http://your_mor_gui_host/billing/callc/try_to_login" method="post"> <input class="input" id="login_username" name="login[username]" size="11" type="text" /> <br> <input class="input" id="login_psw" name="login[psw]" size="11" type="password" /> <br> <br> <input name="commit" type="submit" value="Login" /> </form>