understanding commited on
Commit
f12dc4d
·
verified ·
1 Parent(s): 1406b5a

Create public/index.html

Browse files
Files changed (1) hide show
  1. public/index.html +19 -0
public/index.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Result Checker</title>
5
+ <link rel="stylesheet" href="/style.css">
6
+ </head>
7
+ <body>
8
+ <div class="container">
9
+ <h1>BEU Result Checker</h1>
10
+ <form action="/search" method="GET">
11
+ <input type="text" name="regno"
12
+ placeholder="Enter Registration Number"
13
+ pattern="\d{11}"
14
+ required>
15
+ <button type="submit">Get Result</button>
16
+ </form>
17
+ </div>
18
+ </body>
19
+ </html>