Is it possible to create a sep. php / html page outside of an EE template that contains a login form?
<form action="" method="post">
<label>Username:
<input name="username" type="text" value="" />
</label>
<label>Password:
<input name="password" type="password" value="" />
</label>
<input type="submit" name="submit" value="Sign In" />
</form>I thought perhaps I could change the action to the website root (http://www.whatever.com) but that didn’t work.
Thanks!