-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap.html
25 lines (25 loc) · 918 Bytes
/
bootstrap.html
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
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🙌</text></svg>"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bootstrap Auth</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
/>
</head>
<body class="d-flex text-bg-dark">
<div
id="root"
class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column"
></div>
<script type="module" src="./src/apps/bootstrap/main.tsx"></script>
</body>
</html>