This question may be related to a resolved thread.
I’m new to EE and am going through the process of setting up a custom login on the homepage. I’ve created a few members with different logins via the control panel, ensured the members module was active and I’m using the following code:
{exp:member:login_form return="dashboard/index"}
<label for=“username”>Username</label>
<input type=“text” name=“username” id=“username” maxlength=“32” />
<label class=“password”>Password</label>
<input type=“password” name=“password” id=“password” maxlength=“32” />
<input type=“submit” name=“submit” value=“Submit” />
{/exp:member:login_form}
I have a site/index and dashboard/index template groups setup.
I’m on EE v2.2.2 - Build: date 20110801
The issue occurs when I try to login with one of the user credentials. Once I press submit I’m redirected to a page that states: “The following errors were encountered - You must submit your username and password”
I can login on the members page at http://website.com/member/login/, which redirects me to the site/index. I’m assuming because that form isn’t set to redirect to the dashboard. I’ve seen similar posts about this issue, but no resolution that fits my situation. Has anyone ran into this?