Hi guys!
So I did MultiForm.html, MultiForm.css as well as MultiForm.js that I copied exactly from above, but the outcome is totally different and when I clicked "Register" tab, nothing happened. Really need help ASAP. :(
The screenshot is here: https://s12.postimg.org/z7f...
Jwan Radzi () - 8 years ago - Reply -1
How to load csrf_token (with this login / register page) from register form in Symfony2 FOSUserBundle?
klansser 2323 () - 9 years ago - Reply 0
I cannot get the JS to shift me to another tab for the register tab - I just included into a <head> section of the HTML I created a
<link href="css/loginregister.css" rel="stylesheet"> which is the CSS you have, and also put <script src="js/loginregister.js"></script> . The css is now styled but the JS just isnt working. Any ideas?
Dhruv () - 9 years ago - Reply 0
Hola amigo agrega el script de jquery y te funcionará yo igual batalle saludos!
<script type="text/javascript" src="//code.jquery.com/jquery-1.10..."></script>
Angel Puc Yamá () - 9 years ago - Reply 0
Collection of Bootstrap Login Form Templates
http://www.designerslib.com...
DesignersLib () - 9 years ago - Reply 0
How do i send the form data to a php file? help me please
<form id="quick-login" role="form" class="form col-md-12 center-block" method="post" action="{$mybb->settings['bburl']}/member.php">
Chaz Cash () - 9 years ago - Reply 0
Hey how do I make it such that Register is the default active tab?
Edit: nvm i got it
Abdul Aziz () - 9 years ago - Reply 0
You just change these line below; the class="active" needs moving for which is active.
Login
</div>
<div class="col-xs-6">
Register
to:
Ed () - 9 years ago - Reply 0
When the HTML from this snippet is placed inside an HTML template that is used to populate an Angular ui-view, it stops working. Clicking the "Register" link doesn't work. When I paste the HTML back in the main template in place of the ui-view, it works again. Why is the JS function not found when the html is inside a ui-view?
Alex G. () - 9 years ago - Reply 0
Hey, when using Angular, the html for the view template is not loaded until that template is activated within your UI. Because the Javascript in this snippet is executed when the web page loads, the jQuery will not find the elements which it binds the click events to.
To use it with Angular, I would create a controller for your ui view and have the functions as part of that, finally add ng-click to the html to call your controller.
Wayne Coles () - 9 years ago - Reply 0
Thanks Wayne. I ended up writing a directive to take care of this.
Alex G. () - 9 years ago - Reply 0