-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.php
More file actions
121 lines (117 loc) · 3.88 KB
/
Copy pathsetup.php
File metadata and controls
121 lines (117 loc) · 3.88 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChainPulse Setup</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, sans-serif;
background: linear-gradient(135deg, #0b0e13, #1a1d2e);
color: #e7f0ff;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
max-width: 600px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 20px;
padding: 50px;
text-align: center;
}
h1 {
background: linear-gradient(135deg, #4ad7ff, #6b50ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 20px;
font-size: 42px;
font-weight: 900;
}
p {
opacity: 0.9;
margin-bottom: 30px;
line-height: 1.8;
}
.step {
background: rgba(255,255,255,0.02);
border-left: 3px solid #4ad7ff;
padding: 20px;
margin: 20px 0;
text-align: left;
border-radius: 8px;
}
.step h3 {
color: #4ad7ff;
margin-bottom: 10px;
}
.btn {
display: inline-block;
margin: 10px;
padding: 16px 32px;
background: linear-gradient(135deg, #4ad7ff, #6b50ff);
color: #0b0e13;
text-decoration: none;
border-radius: 12px;
font-weight: 700;
transition: all 0.3s ease;
font-size: 16px;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(74,215,255,0.5);
}
.status {
margin: 30px 0;
padding: 15px;
border-radius: 10px;
font-weight: 600;
}
.status.info {
background: rgba(74,215,255,0.15);
border: 1px solid rgba(74,215,255,0.3);
}
code {
background: rgba(255,255,255,0.1);
padding: 3px 8px;
border-radius: 4px;
font-family: 'Courier New', monospace;
}
</style>
</head>
<body>
<div class="container">
<h1>🚀 ChainPulse Setup</h1>
<p>Welcome! Follow these steps to set up your crypto community platform.</p>
<div class="step">
<h3>📋 Step 1: Install Database</h3>
<p>Click the button below to create the database and all required tables.</p>
<a href="database/install.php" class="btn">Install Database</a>
</div>
<div class="step">
<h3>👤 Step 2: Login or Register</h3>
<p>After installing the database, you can:</p>
<ul style="margin-left: 20px; margin-top: 10px; line-height: 2;">
<li>Login as Admin: <code>admin@chainpulse.com</code> / <code>admin123</code></li>
<li>Or create a new user account</li>
</ul>
<div style="margin-top: 15px;">
<a href="auth/login.php" class="btn">Login</a>
<a href="auth/register.php" class="btn">Register</a>
</div>
</div>
<div class="step">
<h3>🏠 Step 3: Explore</h3>
<p>Visit the homepage or dashboard to start using ChainPulse!</p>
<a href="index.php" class="btn">Homepage</a>
</div>
<div class="status info">
💡 <strong>Tip:</strong> Make sure XAMPP/WAMP is running with MySQL before installing the database.
</div>
</div>
</body>
</html>