基于Bootstrap的jQuery登录表单
时间: 2023-07-26 18:11:04 浏览: 124
基于Bootstrap的jQuery登录表单html模板
5星 · 资源好评率100%
以下是一个基于Bootstrap的jQuery登录表单的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>Login Form</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Login Form</h3>
</div>
<div class="panel-body">
<form role="form">
<div class="form-group">
<label for="username">Username:</label>
<input type="text" class="form-control" id="username" placeholder="Enter username">
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" class="form-control" id="password" placeholder="Enter password">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
```
该表单使用Bootstrap的网格系统将其放置在屏幕中央,并使用面板和表单组件来创建一个简单的登录表单。使用jQuery处理表单提交,可以通过Ajax将表单数据发送到服务器。
阅读全文