Hi; I am Persian and my english is bad , sry :D I've desgined a index page in this index page i insert a login form but i dont know what action insert that ! i want desgin a index page that users can login or register , like twitter index Plz help :x
You'll have to play around with it or even better, find someone who understands web technologies to help you.
Your log in form should have something like this in it: <form method="post" id="form_login" class="form_settings" action="https://your_site_url_here/main/login"> ... <input type="text" id="nickname" name="nickname"/> ... <input name="password" type="password" class="password" id="password"/> ... <input type="submit" id="submit" name="submit" class="submit" value="Login" title=""/> </fieldset> </form>
In theory, you should be able to send the required information from your new front page to the SN login page. I have not tried it to see whether there are some safeguards that may prevent it from working, but the tech-savvy person who helps you can work that out.
Comments
Your log in form should have something like this in it:
<form method="post" id="form_login" class="form_settings" action="https://your_site_url_here/main/login">
...
<input type="text" id="nickname" name="nickname"/>
...
<input name="password" type="password" class="password" id="password"/>
...
<input type="submit" id="submit" name="submit" class="submit" value="Login" title=""/>
</fieldset>
</form>
In theory, you should be able to send the required information from your new front page to the SN login page. I have not tried it to see whether there are some safeguards that may prevent it from working, but the tech-savvy person who helps you can work that out.