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=...)
 
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Use such form:
Use such form (press [http://wiki.kolmisoft.com/index.php?title=Implement_login_form_into_your_website&action=edit here] to see HTML code):


 
<html>
     <form action="http://your_mor_gui_host/billing/callc/try_to_login" method="post">
  <head>
    <title>Your MOR login</title>
  </head>
  <body>
     <form action="http://your_mor_gui_host/billing/callc/try_to_login" method="get">
       <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" />
       <br>
       <br>
       <input class="input" id="login_psw" name="login[psw]" size="11" type="password" />
       <input class="input" id="login_psw" name="login[psw]" size="11" type="password" />
       <br>
       <br>
       <br>    
       <br>
       <input name="commit" type="submit" value="Login" />
       <input name="commit" type="submit" value="Login" />
     </form>
     </form>
  </body>
</html>

Latest revision as of 02:38, 28 October 2020

Use such form (press here to see HTML code):

  
    Your MOR login