Skip to content

Instantly share code, notes, and snippets.

@twilightty
Created May 8, 2025 00:40
Show Gist options
  • Save twilightty/7f9650d4e909246e833e384a6244ceaf to your computer and use it in GitHub Desktop.
Save twilightty/7f9650d4e909246e833e384a6244ceaf to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Đăng Nhập Diễn Đàn</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.login-container {
width: 100%;
max-width: 500px;
margin: 0 auto;
}
h1 {
text-align: center;
font-size: 24px;
margin-bottom: 30px;
font-weight: bold;
}
.form-group {
margin-bottom: 15px;
display: flex;
align-items: center;
}
.form-group label {
width: 120px;
font-size: 16px;
}
.form-group input {
flex: 1;
padding: 5px;
border: 1px solid #999;
height: 25px;
font-size: 16px;
}
.button-group {
display: flex;
gap: 10px;
margin-top: 20px;
margin-left: 120px;
}
</style>
</head>
<body>
<div class="login-container">
<h1>ĐĂNG NHẬP DIỄN ĐÀN</h1>
<form>
<div class="form-group">
<label for="username">Tên đăng nhập:</label>
<input type="text" id="username" name="username">
</div>
<div class="form-group">
<label for="password">Mật khẩu:</label>
<input type="password" id="password" name="password">
</div>
<div class="button-group">
<button type="submit" class="btn">Đăng nhập</button>
<button type="button" class="btn">Phục hồi</button>
</div>
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment