31 lines
634 B
Plaintext
31 lines
634 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<link rel='stylesheet' href='/stylesheets/style.css' />
|
|
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
|
|
|
|
<script src="https://www.gstatic.com/firebasejs/5.7.0/firebase.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id='vue-app'>
|
|
|
|
<input v-model="email" id="email" type="email">
|
|
<input v-model="password" id="password" type="password">
|
|
<button id="loginemailbutton" @click="loginemail()">Login with Email</button>
|
|
|
|
{{email}}
|
|
|
|
<button id="loginbutton" @click="login()">Login with google</button>
|
|
|
|
|
|
<script src="javascripts/login.js"></script>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |