-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 2.34 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
<!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.0.0-beta3/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>
</ul>
</nav>
<div class="container">
<h1>OpenProfile Card Generator</h1>
<form id="profile-form">
<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="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 v2.0 - <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>