iPhone登陆页面代码
时间: 2023-11-17 11:04:21 浏览: 96
以下是一个简单的 iPhone 登录页面代码,包含一个用户名和密码输入框以及一个登录按钮:
```html
<!DOCTYPE html>
<html>
<head>
<title>iPhone Login Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
form {
margin: 50px auto;
width: 80%;
max-width: 400px;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
}
input[type=text], input[type=password] {
width: 100%;
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
margin-bottom: 20px;
box-sizing: border-box;
}
input[type=submit] {
background-color: #007aff;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
border: none;
cursor: pointer;
font-size: 16px;
}
</style>
</head>
<body>
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<input type="submit" value="Log In">
</form>
</body>
</html>
```
你可以将这段代码保存为一个 .html 文件并在 iPhone 或者其他设备上打开,即可看到一个简单的登录页面。
阅读全文