-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreview.html
More file actions
89 lines (85 loc) · 2.72 KB
/
preview.html
File metadata and controls
89 lines (85 loc) · 2.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SkillSync - Preview</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background: #f5f5f5;
}
.preview-container {
max-width: 1200px;
margin: 0 auto;
background: white;
border-radius: 10px;
padding: 20px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.preview-frame {
width: 100%;
height: 600px;
border: 2px solid #ddd;
border-radius: 8px;
margin: 20px 0;
}
.nav-links {
display: flex;
gap: 10px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.nav-links a {
padding: 10px 20px;
background: #4CAF50;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s;
}
.nav-links a:hover {
background: #45a049;
}
h1 {
color: #333;
text-align: center;
}
.status {
background: #e8f5e8;
padding: 10px;
border-radius: 5px;
margin: 10px 0;
border-left: 4px solid #4CAF50;
}
</style>
</head>
<body>
<div class="preview-container">
<h1>SkillSync Application Preview</h1>
<div class="status">
<strong>Status:</strong> Application is ready for preview. Use the navigation links below to view different pages.
</div>
<div class="nav-links">
<a href="login.html" target="preview">Login Page</a>
<a href="register.html" target="preview">Register Page</a>
<a href="index.html" target="preview">Dashboard</a>
<a href="add.html" target="preview">Add Skill</a>
<a href="skills.html" target="preview">View Skills</a>
</div>
<iframe name="preview" class="preview-frame" src="login.html"></iframe>
<div class="status">
<strong>Instructions:</strong>
<ul>
<li>Click on the navigation links above to preview different pages</li>
<li>Start with Register to create an account</li>
<li>Then use Login to access the dashboard</li>
<li>All changes you make to the files will be reflected here</li>
<li>If you need to refresh, right-click in the frame and select "Reload frame"</li>
</ul>
</div>
</div>
</body>
</html>