1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<title>로그인 폼</title></head>
<body>
<h3>로그인 폼</h3>
<hr>
<form name="fo" method="get">
사용자 ID : <input type="text" size="15" value=""><br>
비밀 번호 : <input type="password" size="15" value=""> // type가 "password"이면 비밀번호가 *로 대신출력된다.
<input type="submit" value="완료">
</form>
</body>
</html>
 
cs



 

Posted by 너래쟁이
: