forked from gyanshankar1708/GrowCraft
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest-server.html
More file actions
99 lines (93 loc) · 2.92 KB
/
test-server.html
File metadata and controls
99 lines (93 loc) · 2.92 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GrowCraft Server Test</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 50px auto;
padding: 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-align: center;
}
.container {
background: rgba(255, 255, 255, 0.1);
padding: 30px;
border-radius: 15px;
backdrop-filter: blur(10px);
}
h1 {
color: #ffd700;
margin-bottom: 20px;
}
.status {
background: #28a745;
color: white;
padding: 15px;
border-radius: 10px;
margin: 20px 0;
font-size: 18px;
}
.links {
margin: 30px 0;
}
.links a {
display: inline-block;
background: #007bff;
color: white;
padding: 12px 24px;
margin: 10px;
border-radius: 8px;
text-decoration: none;
transition: all 0.3s ease;
}
.links a:hover {
background: #0056b3;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.info {
background: rgba(255, 255, 255, 0.2);
padding: 20px;
border-radius: 10px;
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>🚀 GrowCraft Local Server</h1>
<div class="status">
✅ Server is running successfully!
</div>
<div class="info">
<h3>Server Information:</h3>
<p><strong>URL:</strong> http://localhost:8000</p>
<p><strong>Status:</strong> Active and serving files</p>
<p><strong>Port:</strong> 8000</p>
</div>
<div class="links">
<h3>Quick Navigation:</h3>
<a href="/index.html">🏠 Homepage</a>
<a href="/src/contact.html">📞 Contact</a>
<a href="/src/login.html">🔐 Login</a>
<a href="/learn/webdev.html">💻 Web Development</a>
<a href="/learn/graphic.html">🎨 Graphic Design</a>
</div>
<div class="info">
<h3>How to Use:</h3>
<p>1. Keep this terminal window open</p>
<p>2. Open your browser and go to <strong>http://localhost:8000</strong></p>
<p>3. Navigate through your website</p>
<p>4. Press <strong>Ctrl+C</strong> in the terminal to stop the server</p>
</div>
<div class="status">
🎉 Your GrowCraft website is now accessible locally!
</div>
</div>
</body>
</html>