Modern Login Form - Copy this Html, Bootstrap Component to your project
Cover div id="popup_login"> <div class="login form" id="login form"> <div style="clear:both;text align:right;margin bottom:0"> <span id="close form" class="btn btn danger">X</span> </div> <h2>Đăng nhập</h2> <div class="form info"> <! Dùng ajax để hiển thị thông báo khi đăng nhập > @using (Ajax.BeginForm("DangNhap", "Home", new AjaxOptions { HttpMethod = "POST", InsertionMode = InsertionMode.Replace, UpdateTargetId = "ThongBao" })) { <input type="text" class="email" name="txtTenDangNhap" placeholder="Tên đăng nhập" required="" /> <input type="password" class="password" name="txtMatKhau" placeholder="Mật khẩu" required="" /> <p><a href="#">Quên mật khẩu?</a></p> <h3 id="ThongBao" style="font weight:bold; color:crimson; text align:left"></h3> <ul class="login buttons"> <li><input type="submit" class="btn summit" value="Đăng nhập" style="height: 60px; width: 150px;" /></li> <li><a href="#" class="btn summit hvr sweep to left" style="min width: 150px; height: 60px; font size: 16px; text decoration:none">đăng ký</a></li> </ul> } </div> </div> </div>
