-
Notifications
You must be signed in to change notification settings - Fork 49
/
index.html
29 lines (29 loc) · 986 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>cdg.sh</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img class="logo" src="https://i.imgur.com/qXe7lWg.png">
</header>
<main id="app">
<form class="form" v-if="formVisible" @submit.prevent="createUrl()">
<div v-if="error" class="error">
{{error}}
</div>
<input class="input" type="text" v-model="url" name="url" id="url" placeholder="enter a url">
<input class="input" type="text" v-model="slug" name="slug" id="slug" placeholder="enter a slug">
<button type="submit" class="create">create</button>
</form>
<div v-if="created">
<p class="created">Your short url is: <a :href="created">{{created}}</a></p>
</div>
</main>
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<script src="app.js"></script>
</body>
</html>