標題:登錄界面 JS CSS
概述:登錄界面是網站中的重要組成部分之一,用戶通過輸入用戶名和密碼進行身份驗證。本文將介紹如何使用JavaScript和CSS創建一個簡單的登錄界面,包括用戶名和密碼輸入框、登錄按鈕以及一個返回按鈕。
1. 創建HTML結構
在HTML中,我們創建一個包含登錄表單的頁面,該表單包括用戶名和密碼輸入框、登錄按鈕以及一個返回按鈕。
```html
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
.container {
max-width: 400px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
.form-group {
margin-bottom: 20px;
.form-control {
display: block;
margin-bottom: 10px;
padding: 10px 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
.submit-btn {
background-color: #4CAF50;
color: #fff;
border: none;
border-radius: 5px;
padding: 15px 20px;
font-size: 16px;
cursor: pointer;
</style>
</head>
<body>
<div class="container">
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<div class="form-group">
<button type="submit" id="submit-btn">Login</button>
</div>
</div>
</body>
</html>
2. 添加CSS樣式
在CSS中,我們為頁面添加一些基本的樣式,以便在瀏覽器中看到良好的外觀。
```css
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
.container {
max-width: 400px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
.form-group {
margin-bottom: 20px;
.form-control {
display: block;
margin-bottom: 10px;
padding: 10px 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
.submit-btn {
background-color: #4CAF50;
color: #fff;
border: none;
border-radius: 5px;
padding: 15px 20px;
font-size: 16px;
cursor: pointer;
3. 實現登錄功能
當用戶點擊“Login”按鈕時,JavaScript代碼會被調用,實現登錄功能。
JavaScript代碼:
```javascript
// 獲取表單元素
const usernameInput = document.getElementById('username');
const passwordInput = document.getElementById('password');
const submitbtn = document.getElementById('submit-btn');
// 獲取提交按鈕的點擊事件
const onSubmit = document.addEventListener('submit', (event) => {
event.preventDefault();
// 獲取用戶名和密碼的值
const username = usernameInput.value;
const password = passwordInput.value;
// 判斷用戶名和密碼是否正確
if (username === 'admin' && password === 'password') {
// 登錄成功
alert('Login successful!');
} else {
// 登錄失敗
alert('Invalid username or password.');
CSS代碼:
```css
#submit-btn {
background-color: #4CAF50;
color: #fff;
border: none;
border-radius: 5px;
padding: 15px 20px;
font-size: 16px;
cursor: pointer;
以上就是使用JavaScript和CSS創建一個簡單的登錄界面的步驟,該界面包括用戶名和密碼輸入框、登錄按鈕以及一個返回按鈕。該教程展示了如何使用JavaScript和CSS來創建一個簡單的登錄表單,以及如何添加CSS樣式以改善表單的外觀。