Pushpendrasinghparmar commited on
Commit
3e2d5e3
·
verified ·
1 Parent(s): 133e1ea

Delete index.html

Browse files
Files changed (1) hide show
  1. index.html +0 -141
index.html DELETED
@@ -1,141 +0,0 @@
1
- ```html
2
- <!DOCTYPE html>
3
- <html lang="en">
4
- <head>
5
- <meta charset="UTF-8">
6
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
- <title>Growform</title>
8
- <style>
9
- body {
10
- font-family: sans-serif;
11
- margin: 0;
12
- padding: 0;
13
- background-color: #f8f9fa;
14
- }
15
- .container {
16
- max-width: 600px;
17
- margin: 50px auto;
18
- background-color: #fff;
19
- padding: 30px;
20
- border-radius: 8px;
21
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
22
- }
23
- .logo {
24
- display: flex;
25
- align-items: center;
26
- margin-bottom: 20px;
27
- }
28
- .logo img {
29
- width: 32px;
30
- height: 32px;
31
- margin-right: 10px;
32
- }
33
- .logo span {
34
- font-weight: bold;
35
- font-size: 1.2rem;
36
- color: #343a40;
37
- }
38
- .khoros-logo {
39
- text-align: center;
40
- margin-bottom: 20px;
41
- }
42
- .khoros-logo img {
43
- height: 30px;
44
- }
45
- .khoros-logo span {
46
- font-size: 24px;
47
- color: #2862d6;
48
- font-weight: bold;
49
- }
50
- .progress-bar {
51
- display: flex;
52
- justify-content: space-around;
53
- margin-bottom: 20px;
54
- }
55
- .progress-bar circle {
56
- width: 30px;
57
- height: 30px;
58
- border-radius: 50%;
59
- border: 1px solid #ced4da;
60
- display: flex;
61
- justify-content: center;
62
- align-items: center;
63
- font-size: 14px;
64
- color: #343a40;
65
- background-color: #fff;
66
- }
67
- .progress-bar line {
68
- height: 1px;
69
- background-color: #ced4da;
70
- }
71
- .progress-bar circle.active {
72
- background-color: #e94590;
73
- color: #fff;
74
- border: none;
75
- }
76
- label {
77
- display: block;
78
- margin-bottom: 5px;
79
- font-size: 14px;
80
- color: #343a40;
81
- }
82
- input[type="email"] {
83
- width: 100%;
84
- padding: 10px;
85
- border: 1px solid #ced4da;
86
- border-radius: 4px;
87
- font-size: 16px;
88
- margin-bottom: 20px;
89
- }
90
- .button {
91
- width: 100%;
92
- background-color: #e94590;
93
- color: #fff;
94
- padding: 12px 20px;
95
- border: none;
96
- border-radius: 4px;
97
- font-size: 16px;
98
- cursor: pointer;
99
- }
100
- .footer {
101
- text-align: center;
102
- margin-top: 30px;
103
- font-size: 12px;
104
- color: #868e96;
105
- }
106
- .footer a {
107
- color: #868e96;
108
- text-decoration: none;
109
- margin: 0 5px;
110
- }
111
- </style>
112
- </head>
113
- <body>
114
- <div class="container">
115
- <div class="logo">
116
- <img src="growform-logo.svg" alt="Growform Logo">
117
- <span>Growform</span>
118
- </div>
119
- <div class="khoros-logo">
120
- <img src="khoros-logo.svg" alt="Khoros Logo">
121
- <span>Khoros</span>
122
- </div>
123
- <p style="text-align:center;margin-bottom:20px;font-size:16px;color:#343a40;">Are you ready for a demo?</p>
124
- <div class="progress-bar">
125
- <div class="circle active">1</div>
126
- <div style="width: 25%;"></div>
127
- <div class="circle">2</div>
128
- <div style="width: 25%;"></div>
129
- <div class="circle">3</div>
130
- </div>
131
- <p style="text-align: center; font-size: 16px; color: #343a40; margin-bottom: 20px;">Let's get started.</p>
132
- <label for="work-email" style="margin-left: 5px;">Work email:</label>
133
- <input type="email" id="work-email" style="margin-left:5px;">
134
- <button class="button" style="margin-left:5px;">NEXT</button>
135
- <div class="footer">
136
- © Khoros, LLC | <a href="#">Privacy</a> | <a href="#">Security</a> | <a href="#">Disclaimer</a> | <a href="#">Legal & Compliance</a> | <a href="#">Terms of Use</a>
137
- </div>
138
- </div>
139
- </body>
140
- </html>
141
- ```