By GokiSoft.com| 20:40 25/10/2023|
Học JS

[Examination] Bài Thi Thực Hành HTML/CSS/JS

Tài Nguyên

Lưu thông tin bài 2 đăng ký vào localStorage

Phản hồi từ học viên

5

(Dựa trên đánh giá ngày hôm nay)

Nguyễn Tuấn Hùng [T2008A]
Nguyễn Tuấn Hùng

2020-11-16 10:00:37


#ex1.html


<!DOCTYPE html>
<html>
<head>
	<title>Đăng nhập</title>
	<meta charset="utf-8">
	<script type="text/javascript"></script>
</head>
<body>
	<form action="Dangnhap.html" method="post">
		<table width="400" height="200" align="center" style="background-color: #FFFFCC">
			<tr>
				<th style="font: Arial; color: #0000CC">ĐĂNG NHẬP HỆ THỐNG</th>
				<img src="C:\xampp\htdocs\HTML\Boot\BWS_Set12">
			</tr>

			<tr>
				<td style="font: Arial; color: #000066">Tài khoản</td>
				<td><input type="text" name="Tài khoản"></td>
			</tr>
			<tr>
				<td style="font: Arial; color: #000066">Mật khẩu</td>
				<td><input type="password" name="Mật khẩu"></td>
			</tr>
			<tr>
				<td><button name="Dangnhap" value="OK" type="submit" onclick="Dangnhap()">Đăng nhập</button></td>
				<td><button name="Nhaplai" value="OK" type="reset" onclick="Nhaplai()">Nhập lại</button></td>
			</tr>
		</table>
	</form>
</body>
</html>


#ex2.html


<!DOCTYPE html>
<html>
<head>
	<title>Phiếu mượn sách</title>
	<meta charset="utf-8">
	<script type="text/javascript"></script>
</head>
<body>
	<form action="Phieumuonsach.html" method="post">
		<table style="background-color: #FFFFCC" align="center">
			<tr>
				<th style="font: Arial; color: #0000CC">Phiếu Mượn Sách</th>
			</tr>
			<tr>
				<td style="font: Arial; color: #000066">Mã sinh viên</td>
				<td><input type="text" name="Mã sinh viên"></td>
			</tr>
			<tr>
				<td style="font: Arial; color: #000066">Họ và tên</td>
				<td><input type="text" name="Họ và tên"></td>
			</tr>
			<tr>
				<td style="font: Arial; color: #000066">Loại sách</td>
				<td><input type="text" name="Loại sách"></td>
			</tr>
			<tr>
				<td style="font: Arial; color: #000066">Tên sách</td>
				<td><input type="text" name="Tên sách"></td>
			</tr>
			<tr>
				<td style="font: Arial; color: #000066">Ngày mượn</td>
				<td><input type="date" name="Ngày mượn"></td>
			</tr>
			<tr>
				<td style="font: Arial; color: #000066">Ngày trả</td>
				<td><input type="date" name="Ngày trả"></td>
			</tr>
			<td><button name="Dangky" value="OK" type="button" onclick="Dangky()" style="font: Arial; background-color: #CCCCCC">Đăng ký</button></td>
			<td><button name="Nhaplai" value="OK" type="button" onclick="Nhaplai()" style="font: Arial; background-color: #CCCCCC">Nhập lại</button></td>
		</table>
	</form>
	
</body>
</html>



Đỗ Minh Quân [T2008A]
Đỗ Minh Quân

2020-11-16 09:59:05


ex1 da sua
<!DOCTYPE html>
<html>
<head>
	<title> MẪU ĐĂNG NHẬP </title>
	<meta charset="utf-8">
	<style type="text/css">
		body{
			background-color: #FFFFCC;
					}
		h1{
			color: #0000CC;
			font: arial;
			text-align: left;
		}
		.row1{
			
			float: left;
			display: block;
			width: 15%;
			height: 200px
		}
		.row2{
			
			float: left;
			display:inline-block;
			width: 50%;
			height: 200px;
			padding-top: 10px
				
		}
		#style{
			font: arial;
			color:#0356fc
		}
	</style>
</head>
<body>
<div> <h1>  ĐĂNG NHẬP HỆ THỐNG</h1></div>
<div class="row1"><img style="width: 60%" src="https://image.flaticon.com/icons/png/512/272/272354.png"></div>
<div class="row2">
  <form class="form-inline">
  <label id="style">Tài khoản </label>
  <input style="margin-left: 49px" type="text" class="form-control">
  <br><br>
  <label id="style">Mật khẩu </label>
  <input style="margin-left: 51px" type="password" class="form-control"><br><br>
  <button  style="margin-left: 110px" type="submit">Đăng nhập  </button>
  <button type="submit">Nhập lại</button>
</div>
</body>
</html>



Đỗ Minh Quân [T2008A]
Đỗ Minh Quân

2020-11-16 09:43:55


bai 1
<!DOCTYPE html>
<html>
<head>
	<title> MẪU ĐĂNG NHẬP </title>
	<meta charset="utf-8">
	<style type="text/css">
		body{
			background-color: #FFFFCC;
					}
		h1{
			color: #0000CC;
			font: arial;
			text-align: left;
		}
		.row1{
			
			float: left;
			display: block;
			width: 15%;
			height: 200px
		}
		.row2{
			
			float: left;
			display:inline-block;
			width: 50%;
			height: 200px;
			padding-top: 10px
				
		}
		#style{
			font: arial;
			color:#0356fc
		}
	</style>
</head>
<body>
<div> <h1>  ĐĂNG NHẬP HỆ THỐNG</h1></div>
<div class="row1"><img style="width: 60%" src="https://image.flaticon.com/icons/png/512/272/272354.png"></div>
<div class="row2">
	<form class="form-inline" action="/action_page.php">
  <label id="style">Tài khoản </label>
  <input style="margin-left: 49px" type="text" class="form-control">
  <br><br>
  <label id="style">Mật khẩu </label>
  <input style="margin-left: 51px" type="password" class="form-control"><br><br>
  <button  style="margin-left: 110px" type="submit">Đăng nhập  </button>
  <button type="submit">Nhập lại</button>
</div>
</body>
</html>



Nguyễn đình quân [T2008A]
Nguyễn đình quân

2020-11-16 09:24:32



<!DOCTYPE html>
<html>
<head>
	<title>bài thi thực hành số1</title>
</head>
<body style="background-color:#FFFFCC;  background-repeat: no-repeat; background-size: cover; color:#0000CC" >
	 <head>
        <meta charset="utf-8">
  </head>
    <body>
        <h3> ĐĂNG NHẬP HỆ THỐNG</h3>
        <img src="https://findicons.com/files/icons/943/application/128/login.png"></img>
            <div>
                <label for="id">Tài Khoản:</label>
                <input id="id" type="text" name="id" value="">
            </div>

            <div>
                <label for="password">Mật Khẩu:</label>
                <input id="password" type="password" name="password" value="">
            </div>
            <div>
                <input type="submit" value="Đăng nhập">
                <input type="submit" value="Nhập Lại">
            </div>
        </div>
        </div>
    </div>
           
            	
        </form>
    </body>

</body>
</html>



Đăng nhập để làm bài kiểm tra

Chưa có kết quả nào trước đó