-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (63 loc) · 3.04 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css">
<title>OpenProfile Card Generator</title>
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="view.html">View</a></li>
<li><a href="https://docs.sctech.localplayer.dev/openprofile/">Docs</a></li>
</ul>
</nav>
<div class="container">
<h1>OpenProfile Card Generator</h1>
<form id="profile-form">
<label for="default-avatar">Default Avatar:</label>
<select name="default-avatar" id="default-avatar">
<option value="identicon">identicon</option>
<option value="retro">retro</option>
<option value="mm">mm (basic)</option>
<option value="pagan">pagan</option>
<option value="monsterid">monsterid</option>
<option value="robohash">robohash</option>
<option value="404">404 (no avatar)</option>
</select>
<input type="text" name="name" placeholder="Name" required>
<input type="text" name="surname" placeholder="Surname">
<input type="text" name="bio" placeholder="Bio">
<input type="text" name="pronouns" placeholder="Pronouns">
<input type="text" name="gender" placeholder="Gender">
<input type="email" name="email" placeholder="Email">
<input type="tel" name="phone" placeholder="Phone">
<input type="url" name="website" placeholder="Website">
<input type="text" name="GPG" placeholder="GPG Key">
<input type="url" name="GitHub" placeholder="GitHub">
<input type="url" name="GitLab" placeholder="GitLab">
<input type="url" name="git" placeholder="Git (other)">
<input type="url" name="StackOverflow" placeholder="StackOverflow">
<input type="url" name="keyoxide" placeholder="Keyoxide">
<input type="url" name="discord" placeholder="Discord">
<input type="url" name="LinkedIn" placeholder="LinkedIn">
<input type="url" name="instagram" placeholder="Instagram">
<input type="url" name="twitter" placeholder="Twitter">
<input type="url" name="facebook" placeholder="Facebook">
<input type="url" name="YouTube" placeholder="YouTube">
<input type="url" name="LinkTag" placeholder="LinkTag">
<button type="submit">Generate</button>
</form>
<div id="result"></div>
</div>
<footer>
<div class="footer-content">
<p>(ↄ) OpenProfile 2024-2025 v3.2 - <a href="privacy.html">Privacy Policy</a> - <a href="https://github.com/openprofileproject/openprofile">Source</a></p>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>