-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.html
More file actions
64 lines (61 loc) · 2.25 KB
/
Copy pathrules.html
File metadata and controls
64 lines (61 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rules – Student HackPad 2026</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav>
<div class="logo">Student HackPad 2026</div>
<ul>
<li><a href="index.html">Overview</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="rules.html">Rules</a></li>
<li><a href="updates.html">Updates</a></li>
<li><a href="discussions.html">Discussions</a></li>
</ul>
<div id="auth-container" class="auth-links"></div>
</nav>
<section>
<h2>Rules & Conduct</h2>
<p style="text-align:center; margin-bottom:2rem;">We're building something positive. Help keep the event welcoming and safe for everyone.</p>
<div class="cards">
<div class="card">
<h3>Be respectful</h3>
<p>Respect all participants and organisers. We celebrate diversity and inclusion.</p>
</div>
<div class="card">
<h3>No plagiarism</h3>
<p>Build your own ideas and credit your sources. Originality matters.</p>
</div>
<div class="card">
<h3>AI tools allowed</h3>
<p>You may use AI tools – just disclose what you use and how in your submission.</p>
</div>
<div class="card">
<h3>No harmful content</h3>
<p>No hate speech, NSFW or malicious projects. Keep it welcoming and safe.</p>
</div>
<div class="card">
<h3>Parental consent</h3>
<p>If you’re a minor, make sure your parent or guardian has given consent to participate.</p>
</div>
</div>
<p style="text-align:center; margin-top:2rem;">Violations may result in disqualification. We want this to be welcoming and safe for everyone.</p>
</section>
<footer>
<ul>
<li><a href="index.html">Overview</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="rules.html">Rules</a></li>
<li><a href="updates.html">Updates</a></li>
<li><a href="discussions.html">Discussions</a></li>
</ul>
<p>© 2026 Student HackPad – All rights reserved.</p>
</footer>
<script src="js/auth.js"></script>
<script src="js/main.js"></script>
</body>
</html>