You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
matrix-chat/src/views/login.vue

28 lines
587 B

<template>
<div id="login">
<h1 class="title">short your url</h1>
<div class="input-field" id="longurl">
<label for="longurl-input"></label>
<input class="input" id="longurl-input" type="text" autocomplete="off" maxlength="20" placeholder="chose nickname">
</div>
<input type="hidden" value="search" name="login">
<textbtn text="login" />
</div>
</template>
<script>
import textbtn from '@/components/textbtn';
export default {
name: "login.vue",
components: {
textbtn
}
}
</script>
<style scoped>
#login{
text-align: center;
}
</style>