Player search
This commit is contained in:
35
public/info.html
Normal file
35
public/info.html
Normal file
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Personal Information</title>
|
||||
<link rel="stylesheet" href="../assets/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="center">
|
||||
<h2>Search Users</h2>
|
||||
<form id="infoForm">
|
||||
<div class="inputGroup">
|
||||
<p>Username:</p>
|
||||
<p id="usernameField">[username]</p>
|
||||
</div>
|
||||
<div class="inputGroup">
|
||||
<p>First Name:</p>
|
||||
<input type="text" id="firstNameField" placeholder="">
|
||||
</div>
|
||||
<div class="inputGroup">
|
||||
<p>Last Name:</p>
|
||||
<input type="text" id="lastNameField" placeholder="">
|
||||
</div>
|
||||
<div class="inputGroup">
|
||||
<p>Date of Birth:</p>
|
||||
<input type="date" id="dobField" placeholder="">
|
||||
</div>
|
||||
<button type="submit">Update Information</button>
|
||||
</form>
|
||||
|
||||
<a href="home.html">Return Home</a>
|
||||
</div>
|
||||
|
||||
<script type="module" src="info.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user