-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
93 lines (76 loc) · 2.56 KB
/
index.php
File metadata and controls
93 lines (76 loc) · 2.56 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cloud Computing</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Nguyễn Văn Tuấn B1607138">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<style type="text/css">
.card-text{
color:white;
}
</style>
</head>
<body >
<div class="container" style="padding-top:10px;text-align: ">
<!-- card-columns -->
<div class="card-columns" style="margin-top:10px;">
<a href="setup.php">
<div class="card bg-info">
<div class="card-body text-center">
<h1 class="card-text">Create table</h1>
</div>
</div>
</a>
<a href="add_account.php">
<div class="card bg-primary">
<div class="card-body text-center">
<h1 class="card-text">Add account</h1>
</div>
</div>
</a>
<a href="list_account.php">
<div class="card bg-success">
<div class="card-body text-center">
<h1 class="card-text">List account</h1>
</div>
</div>
</a>
</div>
<!-- card-columns -->
<!-- carousel -->
<div id="demo" class="carousel slide" data-ride="carousel" style="margin-bottom:20px;">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="cloud1.png" style="width:1100px;height:500px;">
</div>
<div class="carousel-item">
<img src="cloud2.jpg" style="width:1100px;height:500px;">
</div>
<div class="carousel-item">
<img src="cloud3.png" style="width:1100px;height:500px;">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
<!-- carousel -->
</div>
</body>
</html>