old-19 (150)
첫 화면이다.

페이지 소스는 아래와 같다.
<html>
<head>
<title>Challenge 19</title>
<style type="text/css">
body { background:black; color:white; font-size:10pt; }
input { background:silver; color:black; font-size:9pt; }
</style>
</head>
<body>
<form>
id : <input type=text name=id value='admin' maxlength=5 size=5>
<input type=submit>
</form>
</body>
</html>
maxlength
를 6으로 바꾸고 폼에 admin-
을 적어 제출하면 문제가 풀린다.
Last updated
Was this helpful?