利用bootstrap写一个登录界面和一个注册界面
时间: 2024-05-07 17:20:18 浏览: 185
好的,下面是一个简单的登录界面和注册界面的代码示例,采用了Bootstrap框架和HTML/CSS编写。
登录界面代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<!-- 引入Bootstrap样式文件 -->
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
<!-- 自定义样式 -->
<style>
body {
background-color: #f5f5f5;
}
.container {
margin-top: 100px;
max-width: 400px;
padding: 20px;
background-color: #fff;
box-shadow: 0px 0px 10px 0px #ccc;
border-radius: 5px;
}
h2 {
text-align: center;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<h2>Login</h2>
<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="Password">
</div>
<button type="submit" class="btn btn-primary btn-block">Submit</button>
</form>
</div>
<!-- 引入jQuery和Bootstrap JavaScript文件 -->
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>
```
注册界面代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>Register</title>
<!-- 引入Bootstrap样式文件 -->
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/css/bootstrap.min.css">
<!-- 自定义样式 -->
<style>
body {
background-color: #f5f5f5;
}
.container {
margin-top: 100px;
max-width: 400px;
padding: 20px;
background-color: #fff;
box-shadow: 0px 0px 10px 0px #ccc;
border-radius: 5px;
}
h2 {
text-align: center;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<h2>Register</h2>
<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="email">Email</label>
<input type="email" class="form-control" id="email" placeholder="Enter email">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" id="password" placeholder="Password">
</div>
<div class="form-group">
<label for="confirm-password">Confirm Password</label>
<input type="password" class="form-control" id="confirm-password" placeholder="Confirm password">
</div>
<button type="submit" class="btn btn-primary btn-block">Submit</button>
</form>
</div>
<!-- 引入jQuery和Bootstrap JavaScript文件 -->
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>
```
你可以将以上代码复制到一个HTML文件中,然后在浏览器中打开该文件,即可看到登录界面和注册界面。
阅读全文