-
Notifications
You must be signed in to change notification settings - Fork 34
/
index.html
119 lines (116 loc) · 4.65 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
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
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Social Repo</title>
<link rel="stylesheet" href="style.css">
<script src="index.js" defer></script>
</head>
<body>
<header>
<div id="name"><a href="https://github.com/Param302/SocialRepo" target="_blank" rel="noopener noreferrer"
title="SocialRepo">
<img src="../assets/logos/logo_invert.png" alt="logo">
<h1>SocialRepo</h1>
</a></div>
<nav>
<ul>
<li><button id="info-btn"></button></li>
<li><button id="edit-btn"></button></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<ul id="socialLinks">
</ul>
</section>
<section id="info" class="hidden">
<div id="heading">
<img src="../assets/logos/logo_invert.png" alt="logo">
<h2>SocialRepo</h2>
</div>
<p id="tagline"><em>Your Social Handles Repository.</em></p>
<div id="about">
<h3>About</h3>
<p><strong>Social Repo</strong> is an Open Source browser extension which simplify your process of
filling out forms and applications by storing your social media profile links.</p>
</div>
<div id="commands">
<h3>Commands</h3>
<p>Using commands, you can easily enter your social media profile link.
<br>
Typing a <span class="cmd">\<command></span> in input field will replace it with your relevant
social media profile link.
</p>
<button id="table-btn">Show</button>
<table class="hidden">
<thead>
<tr>
<th>Command</th>
<th>Handle</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="cmd">\twitter</span></td>
<td>Twitter</td>
</tr>
<tr>
<td><span class="cmd">\github</span></td>
<td>Github</td>
</tr>
<tr>
<td><span class="cmd">\linkedin</span></td>
<td>LinkedIn</td>
</tr>
</table>
</div>
<div id="info-footer">
<div id="credits">
<div id="images">
<a href="https://twitter.com/SocialRepo" target="_blank" rel="noopener noreferrer"
title="SocialRepo">
<img src="../assets/logos/x.png" alt="Twitter logo">
</a>
<a href="https://github.com/Param302/SocialRepo" target="_blank" rel="noopener noreferrer"
title="SocialRepo">
<img src="../assets/logos/github.png" alt="github logo">
</a>
</div>
<div id="text">
<p>
<span>Made with ❤️ by
<a href="https://github.com/Param302/SocialRepo" target="_blank"
rel="noopener noreferrer" title="SocialRepo">
<strong>Open Source Community</strong>
</a>
</span>
</p>
<p>
<strong>Maintained by</strong>
<a href="https://twitter.com/Param3021" target="_blank" rel="noopener noreferrer"
title="Parampreet Singh">
Parampreet Singh
</a>
</p>
<p>Version: 1.0</p>
</div>
</div>
</p>
</div>
</section>
<section id="edit" class="hidden">
<div class="search-container">
<input type="text" class="search-input" placeholder="Search Your Socials">
<button class="add-link-btn"></button>
</div>
<ul id="links-container">
</ul>
<div id="save-btn-area">
<button id="save-btn">Save</button>
</div>
</section>
</main>
</body>
</html>