1
0
forked from PGL/Clyde
This commit is contained in:
Wawilski 2024-03-06 14:35:58 +01:00
parent 2a558e40cb
commit 34a36f8b1e

View File

@ -2,11 +2,10 @@
import { ref } from 'vue'
import i18n from './i18n.js'
const formname = i18n(login.guest.forname)
const login= ref(true)
const page = ref(0)
const message = ref("")
const message = ref(i18n("login.guest.login") )
</script>
@ -20,7 +19,6 @@
<h1 style="color:rgb(239,60,168); font-family: sans-serif;">SIGN IN</h1>
<div class="inputBox">
<p>USERNAME</p>
<input type="text" required>
</div>
<div class="inputBox">
@ -40,13 +38,13 @@
<div class="form">
<h1 style="color:rgb(239,60,168); font-family: sans-serif; text-align:center;">WELCOME TO THE UNIVERSITY</h1>
<div v-if="page=== 0">
<div v-if="page === 0">
<div class="inputBox">
<p>LASTNAME</p>
<input type="text" required>
</div>
<div class="inputBox">
<p>{{ forname }}</p>
<p>{{ message }}</p>
<input type="text" required>
</div>
<div class="inputBox">