-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuinew.html
94 lines (88 loc) · 5.08 KB
/
uinew.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdn.jsdelivr.net/npm/daisyui@2.31.0/dist/full.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Itim&display=swap" rel="stylesheet">
<title>Document</title>
<style>
* {
font-family: 'Itim', cursive;
display: none;
}
</style>
</head>
<body>
<div id="app">
<div class="flex justify-center">
<div class="w-[780px] h-[420px] flex-col bg-slate-900 mt-5 rounded-xl">
<div class=" w-auto h-[50px] bg-blue-500 rounded-t-lg">
<!-- ชื่อเซิฟ -->
<div class="text-white text-2xl text-center pt-[10px] relative ">
<img src="./assets/img/CB.svg" class="absolute top-[-2px] left-[211px]" width="100px" alt="">
<span class="pt-[12px]">{{ title }}</span>
</div>
<!-- ชื่อผู้ใช้ -->
<div
class=" text-white text-center relative left-[135px] w-[500px] h-[50px] mt-[20px] rounded-md bg-blue-500">
<div class=" text-2xl top-[10px] relative">
ชื่อผู้ใช้
</div>
</div>
<!-- เงินธนาคาร -->
<div
class="text-white text-center relative left-[135px] w-[500px] h-[50px] mt-[12px] rounded-md bg-blue-500">
<div class="text-2xl top-[6px] relative">
จำนวนเงินธนาคาร จำนวนเงินสด
</div>
</div>
<!-- ช่องกรอกเงิน -->
<div class="text-zinc-500 text-center relative left-[135px] w-[500px] mt-[20px] rounded-md">
<div class=" text-2xl">
<input type="text" placeholder="Type here"
class="input text-white input-bordered input-md max-w-[700px] w-[500px] text-xl" />
</div>
</div>
<div class="text-black text-center relative left-[135px] w-[500px] h-[200px] mt-[50px] rounded-md">
<div class=" text-[20px]">
<button class="btn glass w-[150px] mr-3">Deposit</button>
<button class="btn glass w-[150px]">Withdraw</button>
</div>
</div>
<footer
class="footer items-center p-4 bg-neutral text-neutral-content mt-[-140px] rounded-b-lg bg-blue-500">
<div class="items-center grid-flow-col">
<svg width="36" height="36" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"
fill-rule="evenodd" clip-rule="evenodd" class="fill-current">
<path
d="M22.672 15.226l-2.432.811.841 2.515c.33 1.019-.209 2.127-1.23 2.456-1.15.325-2.148-.321-2.463-1.226l-.84-2.518-5.013 1.677.84 2.517c.391 1.203-.434 2.542-1.831 2.542-.88 0-1.601-.564-1.86-1.314l-.842-2.516-2.431.809c-1.135.328-2.145-.317-2.463-1.229-.329-1.018.211-2.127 1.231-2.456l2.432-.809-1.621-4.823-2.432.808c-1.355.384-2.558-.59-2.558-1.839 0-.817.509-1.582 1.327-1.846l2.433-.809-.842-2.515c-.33-1.02.211-2.129 1.232-2.458 1.02-.329 2.13.209 2.461 1.229l.842 2.515 5.011-1.677-.839-2.517c-.403-1.238.484-2.553 1.843-2.553.819 0 1.585.509 1.85 1.326l.841 2.517 2.431-.81c1.02-.33 2.131.211 2.461 1.229.332 1.018-.21 2.126-1.23 2.456l-2.433.809 1.622 4.823 2.433-.809c1.242-.401 2.557.484 2.557 1.838 0 .819-.51 1.583-1.328 1.847m-8.992-6.428l-5.01 1.675 1.619 4.828 5.011-1.674-1.62-4.829z">
</path>
</svg>
<p class=" text-[15px]">Copyright © 2022 - Powerby: Quality Shop & X? Teams</p>
</div>
</footer>
</div>
</div>
</div>
</div>
<script type="module">
import config from './config/config.js'
console.log(config)
const { createApp } = Vue
createApp({
data() {
return {
title: config.title,
message: 'Hello Vue!'
}
}
}).mount('#app')
</script>
</body>
</html>