Swathi6 commited on
Commit
23e3879
·
verified ·
1 Parent(s): a66d611

Create templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +16 -0
templates/index.html ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>BiryaniHub</title>
7
+ <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
8
+ </head>
9
+ <body>
10
+ <div class="container">
11
+ <h1>Welcome to BiryaniHub</h1>
12
+ <button onclick="window.location.href='/signup'">Signup</button>
13
+ <button onclick="window.location.href='/login'">Login</button>
14
+ </div>
15
+ </body>
16
+ </html>