-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (64 loc) · 3.89 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
<html>
<head>
<title>DramSoc Email Signature Generator</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
</head>
<body>
<div class="container-md">
<div class="row justify-content-md-center align-items-center p-3 mb-3">
<div class="col-sm-12 col-md-10">
<h1>DramSoc Email Signature Generator</h1>
<form>
<div class="mb-3">
<label for="fullName" class="form-label">Name</label>
<input type="text" class="form-control form-control-lg" id="fullName" placeholder="Sir Walter Plinge" autocomplete="name">
</div>
<div class="mb-3">
<label for="userRole" class="form-label">Role</label>
<input type="text" class="form-control" id="userRole" placeholder="Ghost" autocomplete="organization-title">
</div>
<hr>
<div class="mb-3">
<label for="orgName" class="form-label">Organisation</label>
<input type="text" class="form-control form-control-sm" id="orgName" value="Imperial College Dramatic Society" autocomplete="organization">
</div>
<div class="mb-3">
<label for="orgName" class="form-label">Address</label>
<input type="text" class="form-control form-control-sm" id="orgAddress" value="Beit Quad, Prince Consort Road, London SW7 2BB" autocomplete="street-address">
</div>
<div class="mb-3 g-3 row">
<div class="col-sm-12 col-md-4">
<label for="orgPhone" class="form-label">Phone</label>
<input type="tel" class="form-control form-control-sm" id="orgPhone" value="020 759 48102">
</div>
<div class="col-sm-6 col-md-4">
<label for="orgLink1" class="form-label">Link 1</label>
<input type="url" class="form-control form-control-sm" id="orgLink1" value="dramsoc.org">
</div>
<div class="col-sm-6 col-md-4">
<label for="orgLink2" class="form-label">Link 2</label>
<input type="url" class="form-control form-control-sm" id="orgLink2" value="facebook.com/dramsoc">
</div>
</div>
</form>
<hr>
<div class="col-md-12 sol-sm-12 border border-primary rounded p-2" id="signature">
<p>
<b id="sig_fullName"></b><br>
<span id="sig_userRole" style="color:gray;"></span>
</p>
<p><small style="color:gray;">
<span id="sig_orgName"></span><br>
<span id="sig_orgAddress"></span><br>
<span id="sig_orgPhone"></span> / <span id="sig_orgLink1"></span> / <span id="sig_orgLink2"></span>
</small></p>
</div>
<button type="button" class="btn btn-primary btn-lg mt-3" onclick="copySignature()">Copy</button>
</div>
</div>
</div>
<script src="./generate.js"></script>
</body>
</html>