File size: 641 Bytes
78447bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Quiz Application</title>
    <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
    <div class="container text-center">
        <h1 class="mt-5">Real-Time Quiz Application</h1>
        <button onclick="window.location.href='/client'" class="btn btn-primary mt-3">Join as Client</button>
        <button onclick="window.location.href='/host'" class="btn btn-success mt-3">Join as Host</button>
    </div>
</body>
</html>