-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.58 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.58 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://unpkg.com/bootstrap@5/dist/css/bootstrap.css" rel="stylesheet" crossorigin>
<link href="https://unpkg.com/font-awesome@4.7/css/font-awesome.css" rel="stylesheet" crossorigin>
<title>
Node + React + Bootstrap Application
</title>
</head>
<body>
<nav class="navbar navbar-dark bg-success mb-2 pb-2">
<div class="container-fluid">
<span class="navbar-brand" href="#">
Node + React + Bootstrap Application
</span>
</div>
</nav>
<main id="react_container" class="container">
<section class="text-center pt-2">
<span class="fa-stack fa-5x">
<i class="fa fa-fw fa-stack-2x fa-square text-success"></i>
<i class="fa fa-fw fa-stack-1x fa-inverse fa-spinner fa-pulse"></i>
<span class="sr-only">Loading...</span>
</span>
</section>
</main>
<script src="https://unpkg.com/react@17/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js" crossorigin></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js" crossorigin></script>
<script src="components/msal.js" type="text/babel"></script>
<script src="app.js" type="text/babel"></script>
</body>
</html>