"/" にファイルをアップロード

This commit is contained in:
櫻田海斗 2024-10-08 21:55:32 +09:00
commit dd4d4e1460
2 changed files with 70 additions and 0 deletions

22
login.html Normal file
View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ログインページ</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>AppClassにログイン</h1>
<p>学籍番号を入力してください</p>
<input type="text" placeholder="学籍番号">
<input type="text" placeholder="名">
<button>次へ</button>
</div>
<scropt src="login.js"></scropt>
</body>
</html>

48
style.css Normal file
View File

@ -0,0 +1,48 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f5f5;
}
.container {
background-color: white;
padding: 20px;
width: 90%;
max-width: 400px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
font-size: 1.4rem;
color: #202124;
}
input[type="text"] {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #dadce0;
border-radius: 4px;
box-sizing: border-box;
}
button {
background-color: #24e81a;
color: white;
padding: 10px 0;
width: 100%;
border: none;
border-radius: 4px;
font-size: 1rem;
cursor: pointer;
}
button:hover {
background-color: greenyellow;
}