Used that today. Don't know why, but link to css file not working. Added strings:
<html>
<head>
<link href="css/login.css" rel="stylesheet">
</head>
Maya () - 10 years ago - Reply 0
Perhaps a stupid question, but I am really new to it! How could I implement this form in joomla 3? Is it possible via custom htlm module?
Panos () - 10 years ago - Reply 0
Maxsurguy, could you please guide me on which files to add the code given in order to get it working?
Panos () - 10 years ago - Reply 0
if it uses Bootstrap 3 then copying this snippet HTML should be enough. What result do you see?
maxsurguy () - 10 years ago - Reply 0
Maxgury, it worked fine! A few modifications to the css and here it is! One question... What do I need to do in order to get it working? Ok, every button is there, but no function at the moment!
Panos () - 10 years ago - Reply 0
well, that is something that is definitely outside of the scope of Bootsnipp. You will need to create a web application with a backend. For example you could use PHP and a framework called Laravel (http://laravel.com) to create your application.
maxsurguy () - 10 years ago - Reply 0
You're welcome! Enjoy Bootsnipp and other projects I'm running :)
maxsurguy () - 10 years ago - Reply 0
Anyone who's having problems like Nilesh mentioned below - you just need to adjust the height and padding of the textbox.
http://stackoverflow.com/qu...
I found the following worked best for me:
.form-signin .form-control {
position: relative;
font-size: 16px;
height: 100%;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
Kyle Whittington () - 10 years ago - Reply 0
Awesome thanks for that, ran into the exact same problem just now.
Jason MacLulich () - 9 years ago - Reply 0