Jump to content

Question

Posted

It's been a long night of programming, so I may be a little off this morning.

 

I'm trying to create a login form on my website homepage to my Blesta install. Is there any quick reference for this that I'm missing? 

5 answers to this question

Recommended Posts

  • 0
Posted
<form method="post" action="https://blesta.domain/client/login/">
  <table cellpadding="5" style="width: 100%;" border="0">
    <tr>
      <td align="center" valign="middle" style="padding: 20px 0 0 0;"><label for="login_username">Username</label></td>
      <td width="40%" align="center" style="padding: 20px 0 0 0;"><input style="width:85%" type="text" name="username" value="" id="login_username" /></td>
   </tr><tr>
      <td align="center" valign="middle" style="padding: 20px 0 0 0;"><label for="login_password">Password</label></td>
      <td width="40%" align="center" style="padding: 20px 0 0 0;"><input style="width:85%" type="password" name="password" id="login_password" /></td>
    </tr><tr>
      <td colspan="2" align="center" valign="top" style="padding: 20px 0 20px 0;"><input type="submit" name="" value="Account Login" style="margin: 5px 15px 0 15px" /></td>
    </tr>
   </table>
</form>

Something along those lines?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...