Rwsult / public /index.html
understanding's picture
Update public/index.html
3a2ed88 verified
raw
history blame contribute delete
478 Bytes
<!DOCTYPE html>
<html>
<head>
<title>BEU Result Checker</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div class="container">
<h1>Check Your Result</h1>
<form action="/search" method="GET">
<input type="text"
name="regno"
placeholder="Enter Registration Number (11 digits)"
pattern="\d{11}"
required>
<button type="submit">Get Result</button>
</form>
</div>
</body>
</html>