-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateplex.php
More file actions
28 lines (22 loc) · 1.07 KB
/
createplex.php
File metadata and controls
28 lines (22 loc) · 1.07 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
<html>
<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">
</head>
<body>
<div id="custom-request-div">
<h1 id="main-title">Create A Plex Account</h1>
<p class="white">Use this page to create a new plex account!
</p>
<form method="post" action="/PHP/plex_auth/create.php" id="create-form">
<input type="text" name="username" placeholder="Username" required></input>
<input type="text" name="email" placeholder="Email" required></input>
<input type="password" class="password-field" name="pass" placeholder="Password" required></input>
<input type="password" class="password-field" name="repeat-pass" placeholder="Repeat Password" required></input>
<input type="submit" id="submit">
</form>
</div>
<!--<script src="/JS/custom.js"></script>-->
</body>
</html>