aboutsummaryrefslogtreecommitdiff
path: root/contrib/gns/gns-bcd.html
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/gns/gns-bcd.html')
-rw-r--r--contrib/gns/gns-bcd.html205
1 files changed, 0 insertions, 205 deletions
diff --git a/contrib/gns/gns-bcd.html b/contrib/gns/gns-bcd.html
deleted file mode 100644
index b15e3fcc3..000000000
--- a/contrib/gns/gns-bcd.html
+++ /dev/null
@@ -1,205 +0,0 @@
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="utf-8"/>
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Create your GNU Name System Business Card</title>
7 <style>
8 /* "Reset" values */
9 html {
10 box-sizing: border-box;
11 }
12 *, *:before, *:after {
13 box-sizing: inherit;
14 }
15 body {
16 font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
17 font-size: 1rem;
18 font-weight: 400;
19 line-height: 1.5;
20 background-color: #ffffff;
21 color: #212121;
22 margin: 0;
23 }
24 h1, h2, h3, h4, h5 {
25 margin-top: 0px;
26 margin-bottom: 0.5rem;
27 font-weight: 500;
28 }
29 p {
30 margin-top: 0px;
31 margin-bottom: 1rem;
32 }
33 fieldset{
34 margin: 0px;
35 padding: 0px;
36 border: 0px;
37 min-width: 0px;
38 }
39 label {
40 display: inline-block;
41 }
42 input {
43 margin: 0px;
44 font-family: inherit;
45 font-size: inherit;
46 line-height: inherit;
47 }
48 /* "Component" values */
49 .gns-container {
50 max-width: 100%;
51 margin-left: auto;
52 margin-right: auto;
53 }
54 .gns-header {
55 padding-top: 1rem;
56 padding-bottom: 0.25rem;
57 }
58 .gns-form-group {
59 margin-bottom: 1.5rem;
60 }
61 .gns-form-group:not(:last-child) {
62 border-top: 1px solid #cecece;
63 }
64 .gns-form-group > :first-child {
65 margin-top: 1rem;
66 }
67 .gns-field:not(:last-child) {
68 margin-bottom: 1rem;
69 }
70 .gns-label {
71 margin-bottom: 0.25rem;
72 }
73 .gns-text-input {
74 display: block;
75 width: 100%;
76 padding: 0.375rem 0.75rem;
77 color: #212121;
78 background-color: #ffffff;
79 border: 1px solid #ced4da;
80 border-radius: 0.20rem;
81 }
82 .gns-text-input:focus {
83 box-shadow: 0px 0px 9px rgba(102, 175, 233, 0.5);
84 border: 1px solid rgb(102, 175, 233);
85 }
86 .gns-button {
87 display: inline-block;
88 text-align: center;
89 text-decoraton: none;
90 vertical-align: middle;
91 cursor: pointer;
92 border: 1px solid transparent;
93 padding: 0.375rem 0.75rem;
94 border-radius: 0.20rem;
95 }
96 .gns-button:focus {
97 box-shadow: 0px 0px 9px rgba(200, 200, 200, 0.75);
98 border: 1px solid rgb(98, 98, 98);
99 }
100 @media (min-width: 576px) {
101 .gns-container {
102 max-width: 540px;
103 }
104 }
105 @media (min-width: 768px) {
106 .gns-container {
107 max-width: 720px;
108 }
109 }
110 @media (min-width: 992px) {
111 .gns-container {
112 max-width: 960px;
113 }
114 }
115 @media (min-width: 1200px) {
116 .gns-container {
117 max-width: 1140px;
118 }
119 }
120 @media (min-width: 1400px) {
121 .gns-container {
122 max-width: 1320px;
123 }
124 }
125 </style>
126 </head>
127 <body>
128 <div class="gns-container">
129 <div class="gns-header">
130 <h1>GNU Name System Business Card</h1>
131 <p>Please fill in the informations below to generate your business
132 card.</p>
133 </div>
134 <form name="gnsinput" action="/submit/full" method="get">
135 <fieldset class="gns-form-group">
136 <div class="gns-field">
137 <label class="gns-label" for="prefix">Academic Title (prefix):</label>
138 <input class="gns-text-input" name="prefix" type="text">
139 </div>
140 <div class="gns-field">
141 <label class="gns-label" for="name">Full Name:</label>
142 <input class="gns-text-input" name="name" type="text" required>
143 </div>
144 </fieldset>
145 <fieldset class="gns-form-group">
146 <div class="gns-field">
147 <label class="gns-label" for="phone">Phone:</label>
148 <input class="gns-text-input" name="phone" type="text">
149 </div>
150 <div class="gns-field">
151 <label class="gns-label" for="fax">Fax:</label>
152 <input class="gns-text-input" name="fax" type="text">
153 </div>
154 <div class="gns-field">
155 <label class="gns-label" for="email">E-mail:</label>
156 <input class="gns-text-input" name="email" type="email" required>
157 </div>
158 <div class="gns-field">
159 <label class="gns-label" for="homepage">Homepage:</label>
160 <input class="gns-text-input" name="homepage" type="text" required>
161 </div>
162 </fieldset>
163 <fieldset class="gns-form-group">
164 <div class="gns-field">
165 <label class="gns-label" for="org">Organization:</label>
166 <input class="gns-text-input" name="org" type="text" required>
167 </div>
168 <div class="gns-field">
169 <label class="gns-label" for="department">Department:</label>
170 <input class="gns-text-input" name="department" type="text">
171 </div>
172 <div class="gns-field">
173 <label class="gns-label" for="subdepartment">Division:</label>
174 <input class="gns-text-input" name="subdepartment" type="text">
175 </div>
176 <div class="gns-field">
177 <label class="gns-label" for="jobtitle">Jobtitle:</label>
178 <input class="gns-text-input" name="jobtitle" type="text">
179 </div>
180 </fieldset>
181 <fieldset class="gns-form-group">
182 <div class="gns-field">
183 <label class="gns-label" for="gpgfingerprint">GPG Fingerprint:</label>
184 <input class="gns-text-input" name="gpgfingerprint" type="text">
185 </div>
186 <div class="gns-field">
187 <label class="gns-label" for="gnskey">GNS Public Key</label>
188 <input class="gns-text-input" name="gnskey" type="text" required>
189 </div>
190 <div class="gns-field">
191 <label class="gns-label" for="gnsnick">GNS Nickname:</label>
192 <input class="gns-text-input" name="gnsnick" type="text" required>
193 </div>
194 </fieldset>
195 <fieldset class="gns-form-group">
196 <div class="gns-field">
197 <input class="gns-button"
198 type="submit"
199 value="Generate Business Card">
200 </div>
201 </fieldset>
202 </form>
203 </div>
204 </body>
205</html>