- Joined
- Threads
- 132
- Posts
- 414
This member is banned. Please avoid dealing with banned members.
Simple login and sign up form built in bootstrap. A flip effect to change from login form to signup form. Easier to direct to other forms without reloading the page. Another way than using the tab class. Hope you like it.
Sample Source Code
This simple source code for the Log In Form for the user, where they can type their username and password to log in.
Code:
<div class="panel panel-default">
<form class="form-horizontal">
<br>
<h1 class="text-center">
LOGO
</h1>
<br>
<input class="form-control" placeholder="Username"/>
<input class="form-control" placeholder="Password"/>
<p class="text-right">
<a href="">Forgot Password</a>
</p>
<button class="btn btn-primary btn-block">LOG IN</button>
<p class="blue">Sign in with</p>
<p>
<i class="fa fa-facebook-f fa-lg"></i>
<i class="fa fa-google-plus fa-lg"></i>
<i class="fa fa-twitter fa-lg"></i>
</p>
<hr>
<p class="text-center">
<a href="#" class="fliper-btn">Create new account?</a>
</p>
</form>
</div>
Code:
<div class="panel panel-default">
<form class="form-horizontal">
<br>
<h1 class="text-center">
LOGO
</h1>
<br>
<label>
Basic Information
</label>
<input class="form-control" placeholder="Fullname"/>
<input class="form-control" placeholder="Email"/>
<label>
Private Information
</label>
<input class="form-control" placeholder="Password"/>
<input class="form-control" placeholder="Mobile Number"/>
<button class="btn btn-primary btn-block">SIGN UP</button>
<p class="text-center">
<a href="#" class="fliper-btn">Already have an account?</a>
</p>
</form>
</div>
Download Source Code
You must reply to see the hidden content. Consider upgrading your account to increase your reply limit.