forked from gspetillo/tech-initials-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (60 loc) · 2.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
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tech Initials Generator</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DE1FKD1337"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-DE1FKD1337');
</script>
<link rel="stylesheet" href="/resources/css/style.css">
<link rel="shortcut icon" href="/resources/images/favicon.ico" type="image/x-icon">
<link rel="icon" href="/resources/images/favicon.ico" type="image/x-icon">
</head>
<body>
<div id="app">
<div class="mx-auto mt-5 " style="width: 800px;">
<div class="card card-4 ">
<div class="card-body mx-auto px-5 py-5">
<div class="mx-auto my-4 text-center">
<h1>{{ final }}</h1>
</div>
<form action="#">
<div class="form-group">
<input id="input" class="form-control " type="text" v-model="text" placeholder="Ex.: AWS"
style="text-transform:uppercase" required />
<label id="only" for="name" class="control-label">* Only letters of the Latin
alphabet</label>
</div>
<div class="mb-4 row">
<button class="btn btn-success col-sm mr-1" type="button" v-on:click="initials">🔠
Initials</button>
<button class="btn btn-danger col-sm" type="reset" v-on:click="removeText">🗑
Erase</button>
</div>
</form>
<div class="mx-auto my-4 text-center">
<h4 id="devby">👨💻 Developed by: <a id="linkedin"
href="https://linkedin.com/in/gabrielpetillo" target="_blank">Gabriel Petillo</a> and <a
id="linkedin" href="https://www.linkedin.com/in/jjean-jacques10/" target="_blank">Jean
Jacques</a></h4>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
<!----->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<!----->
<script text="text/javascript" src="/resources/js/initials-generator.js"></script>
</body>
</html>