-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (38 loc) · 2.21 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="/css/style.css">
<title></title>
</head>
<body>
<h1 id="page-title">THE WORLD OF ROGER DEAN - IMAGEBOARD</h1>
<div id="main">
<!-- ************************* VUE START ********************** -->
<display-img-modal v-if="imgClicked" :id="imgClicked" @close="closeModal"></display-img-modal>
<form class="input-form">
<input v-model="title" type="text" name="title" id="" placeholder="Title">
<input v-model="username" type="text" name="username" id="" placeholder="User name">
<input v-model="description" type="text" name="description" id="" placeholder="Image Description">
<label for="file" class="file-label"><i class="fas fa-cloud-upload-alt"></i></label>
<input @change="fileSelectHandler" type="file" name="file" id="file" accept="image/*">
<button @click.prevent="clickHandler">Submit</button>
<div v-if="spinner"><div class="dots-3"></div></div>
</form>
<section class="wrapper-grid">
<div v-for="image in images" :key="image.id" class="img-card" @click="openImgModal(image.id)">
<img :src="image.url" :alt="image.description">
<p class="img-title">{{image.title}}</p>
</div>
</section>
<button v-if="displayBtn" class="more-btn" @click="showMoreImg" >More</button>
<!-- ************************* VUE END ********************** -->
</div>
<footer>©Luise Brandenburger 2021</footer>
<script src="/js/app.js" type="module" crossorigin="use-credentials"></script>
</body>
</html>