-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
31 lines (31 loc) · 957 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<html>
<head>
<title> Digital Diner </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="style/login.css" rel="stylesheet">
</head>
<body>
<section class="headerpic">
<img src="images/loginlogo.png">
</section>
<center><p> A way of smart service </p></center>
<script src="login.js"></script>
<div class="login-page">
<div class="form">
<form class="login-form" action="mainpage.html" method="POST">
<input type="tel"
name="phone_number"
id="phone_number"
pattern="^\d{10}$"
placeholder="Enter Mobile number"
required="required"
/>
<input type="text" name="text" placeholder="Enter Table number(1-9)" pattern="^\d{1}$"required>
<input class="submit-form" type="submit" name="submit" value="Proceed" class="btn btn-primary">
</form>
</div>
</div>
</body>
</html>