-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_started.html
133 lines (118 loc) · 2.95 KB
/
get_started.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Get Started - RadiXGPT</title>
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
body {
color: #212529;
background-color: #f8f9fa;
font-family: "Roboto", sans-serif;
}
.container {
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(223, 40, 192, 0.3);
border-radius: 15px;
padding: 20px;
flex-direction: column;
backdrop-filter: blur(10px);
box-shadow: 0 0 15px rgba(223, 40, 192, 0.2);
}
.header {
background-color: rgba(33, 37, 41, 0.8);
color: white;
padding: 20px;
text-align: center;
font-size: 2rem;
font-weight: bold;
margin-bottom: 1rem;
border-radius: 15px;
box-shadow: 0 0 15px rgba(33, 37, 41, 0.2);
}
.logo {
font-size: 1.5rem;
font-weight: bold;
color: #212529;
text-decoration: none;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
li {
float: left;
}
li a {
display: block;
color: #212529;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #ddd;
color: black;
}
.chat-history {
border: 2px solid #ddd;
border-radius: 15px;
background-color: white;
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.05) inset;
}
.form-control, .btn {
border-radius: 15px;
transition: all 0.3s;
}
.form-control:focus {
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn-primary:hover {
background-color: #0d6efd;
border-color: #0d6efd;
}
.btn-secondary:hover {
background-color: #6c757d;
border-color: #6c757d;
}
</style>
<body>
<header>
<nav>
<a href="#" class="logo">RadiXGPT</a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="get_started.html">Get Started</a></li>
<li><a href="submit_report.html">Submit Report</a></li>
<li><a href="chat.html">Chat</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="container">
<section id="start" class="start">
<div class="start-content">
<h2>Let's Get Started!</h2>
<p>Enter your information below to begin using RadiXGPT.</p>
<form>
<input type="text" placeholder="Name" required>
<input type="email" placeholder="Email" required>
<input type="password" placeholder="Password" required>
<button type="submit" class="start-btn">Submit</button>
</form>
</div>
</section>
</div>
<footer>
<p>© 2023 RadiXGPT. All rights reserved.</p>
</footer>
</body>
</html>