maitrang04 commited on
Commit
2abdda3
·
verified ·
1 Parent(s): dfeb480

Update frontend/base.html

Browse files
Files changed (1) hide show
  1. frontend/base.html +82 -0
frontend/base.html CHANGED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>PINE-AI MVP - Base</title>
6
+ <style>
7
+ :root {
8
+ --vnpt-blue: #00a1e4;
9
+ --vnpt-dark: #0072bc;
10
+ --bg-body: #f4f7fa;
11
+ --chat-bot: #ffffff;
12
+ --chat-user: #e3f2fd;
13
+ }
14
+
15
+ body {
16
+ margin: 0;
17
+ font-family: Arial, sans-serif;
18
+ background-color: var(--bg-body);
19
+ }
20
+
21
+ header {
22
+ background-color: var(--vnpt-blue);
23
+ color: white;
24
+ padding: 15px 20px;
25
+ }
26
+
27
+ header h1 {
28
+ margin: 0;
29
+ font-size: 24px;
30
+ }
31
+
32
+ main {
33
+ padding: 30px 20px;
34
+ text-align: center;
35
+ }
36
+
37
+ .tab-list {
38
+ display: flex;
39
+ justify-content: center;
40
+ gap: 20px;
41
+ margin-bottom: 40px;
42
+ }
43
+
44
+ .tab-list a {
45
+ text-decoration: none;
46
+ font-weight: bold;
47
+ color: var(--vnpt-dark);
48
+ background-color: var(--chat-bot);
49
+ padding: 10px 20px;
50
+ border-radius: 8px;
51
+ border: 1px solid var(--vnpt-dark);
52
+ }
53
+
54
+ .tab-list a:hover {
55
+ background-color: var(--vnpt-dark);
56
+ color: white;
57
+ }
58
+
59
+ .tab-content {
60
+ font-size: 18px;
61
+ color: #333;
62
+ }
63
+ </style>
64
+ </head>
65
+ <body>
66
+ <header>
67
+ <h1>PINE-AI MVP</h1>
68
+ </header>
69
+
70
+ <main>
71
+ <div class="tab-list">
72
+ <a href="/desktop" target="_blank">Call Desktop View</a>
73
+ <a href="/mobile" target="_blank">Call Mobile View</a>
74
+ <a href="/dashboard" target="_blank">Dashboard for System Manager</a>
75
+ </div>
76
+
77
+ <div class="tab-content">
78
+ <p>Chọn một tab để xem nội dung tương ứng.</p>
79
+ </div>
80
+ </main>
81
+ </body>
82
+ </html>