-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhowto.php
More file actions
110 lines (89 loc) · 4.5 KB
/
howto.php
File metadata and controls
110 lines (89 loc) · 4.5 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
<html>
<style>
body{
padding-bottom:1000px;
}
img{
max-width:100%;
vertical-align: middle;
}
.step{
max-width:350px;
min-width:150px;
display:inline-block;
margin: 10px;
}
@media screen and (max-width: 700px) {
div#contact-form { display: none }
}
@media screen and (min-width: 700px) {
div#contact-button { display: none }
}
</style>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/jquery.scrollto@2.1.2/jquery.scrollTo.min.js"></script>
<link rel="stylesheet" type="text/css" href="/CSS/StyleSheet.css">
<meta name="viewport" content="width=device-width, initial-scale=0.8, maximum-scale=1.0, user-scalable=no">
</head>
<body>
<div>
<h1 class="white">Help Page</h1>
</div>
<div class="item rounded">
<h2>What do you need help with?</h2>
<button class="watch_button" onclick="window.location.href = '/howto.php#plex-first-login';">No Movies Appear in Plex</button>
<button class="watch_button" onclick="window.location.href = '/howto.php#where-to-watch';">Where Can I Watch?</button>
<button class="watch_button" onclick="window.location.href = '/howto.php#not-approved';">Login "Not Approved"</button>
<button class="watch_button" onclick="window.location.href = '/howto.php#contact-webmaster';">Page is frozen or blank</button>
<button class="watch_button" onclick="window.location.href = '/howto.php#invite';">Invite Friend</button>
<button class="watch_button" onclick="window.location.href = '/howto.php#contact-webmaster';">Other</button>
</div>
<div id="plex-first-login" class="item rounded">
<h2>First Login to Plex</h2>
<p>If this is your first login to plex, you must accept an invitation from 'harrismcc'. This will
allow you to view all available media. This step needs to be done the first time you login.</p>
<div class="step">
<h3>1.</h3>
<img src="https://i.imgur.com/JzpzFNf.png">
</div>
<div class="step">
<h3>2.</h3>
<img src="https://i.imgur.com/jUi3nle.png">
</div>
<div class="step">
<h3>3.</h3>
<img src="https://i.imgur.com/5zeUCrB.png">
</div>
</div>
<div class="item rounded" id="where-to-watch">
<h2>Where to Watch</h2>
<p>The meadia streaming experiance is done using Plex, an amazing free media platform. This can be donwloaded on a multitude of
devices from mobile to smart-tv's. You can search for the "Plex" app and sign in using the account details you created for Hadfield.
This will allow you watch movies from the Hadfield server anywhere and anytime!</p>
<p>For more info about supported devices, check out this plex article <a href='https://www.plex.tv/apps-devices/'>here</a>.</p>
</div>
<div class="item rounded" id="not-approved">
<h2>Login Not Approved</h2>
<p>If you try to login and you can't because your account is not approved, this means the admins are still
reviewing your account. This community is closed, meaning that all accounts are subject to manual approval.
If you think this is an error, contact the webmaster</p>
<button class="watch_button" onclick="window.location.href = '/howto.php#contact-webmaster';">Contact Webmaster</button>
</div>
<div class="item rounded" id="invite">
<h2>Invite Friend</h2>
<p>Hadfield Media is a closed community, meaning that you have to be invited by a current user or by an admin in order to join.
Each current user is able to create 3 invite codes. Please note that codes you make that are unused still count towards those 3 (so use them carefully!). </p>
</div>
<div class="item rounded" id="contact-webmaster">
<h2>Contact Webmaster</h2>
<p>If you are having trouble that can't be fixed with help from this page, please contact the webmaster</p>
<div id="contact-form">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSciJ9X7UVx0-ai6gfSDxjS5u2Jt-Z5qoNatDumJV43a4InpTA/viewform?embedded=true" width="640" height="948" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
<div id="contact-button">
<button class="watch_button" onclick="window.location.href = 'https://forms.gle/9YxmZxEyfVvysKqL8';">Contact</button>
</div>
</div>
</body>
</html>