-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
62 lines (48 loc) · 2.13 KB
/
home.php
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!-- 1. create HTML5 doctype -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- 2. include meta tag to ensure proper rendering and touch zooming -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--
Bootstrap is designed to be responsive to mobile.
Mobile-first styles are part of the core framework.
width=device-width sets the width of the page to follow the screen-width
initial-scale=1 sets the initial zoom level when the page is first loaded
-->
<meta name="author" content="Jianing Cai, Hao Liu, Xi Wang">
<meta name="description" content="include some description about your page">
<title>Hoo's Listening</title>
<!-- 3. link bootstrap -->
<!-- if you choose to use CDN for CSS bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- you may also use W3's formats -->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<!--
Use a link tag to link an external resource.
A rel (relationship) specifies relationship between the current document and the linked resource.
-->
<!-- If you choose to use a favicon, specify the destination of the resource in href -->
<link rel="icon" type="image/png" href="http://www.cs.virginia.edu/~up3f/cs4750/images/db-icon.png" />
<!-- if you choose to download bootstrap and host it locally -->
<!-- <link rel="stylesheet" href="path-to-your-file/bootstrap.min.css" /> -->
<!-- include your CSS -->
<!-- <link rel="stylesheet" href="custom.css" /> -->
</head>
<body>
<div class="container">
<h1>Hoo's Listening</h1>
</div>
<div class="row mb-3 mx-3">
<a href="register.php">
<input type="submit" class="btn btn-primary" name="actionBtn" value="Register" title="Click to register" />
</a>
</div>
<div class="row mb-3 mx-3">
<a href="login.php">
<input type="submit" class="btn btn-primary" name="actionBtn" value="Login" title="Click to log in" />
</a>
</div>
</body>
</html>