Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LoginController only for login flow #747

Merged
merged 21 commits into from
Nov 29, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change form action in register views
  • Loading branch information
slaveek committed Nov 8, 2015
commit 94f8473a2ef1232cf7a2e67fa96866764e2cbdf6
2 changes: 1 addition & 1 deletion application/view/register/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<h2>Register a new account</h2>

<!-- register form -->
<form method="post" action="<?php echo Config::get('URL'); ?>login/register_action">
<form method="post" action="<?php echo Config::get('URL'); ?>register/register_action">
<!-- the user name input field uses a HTML5 pattern check -->
<input type="text" pattern="[a-zA-Z0-9]{2,64}" name="user_name" placeholder="Username (letters/numbers, 2-64 chars)" required />
<input type="text" name="user_email" placeholder="email address (a real address)" required />
Expand Down