-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkyc.vue
97 lines (86 loc) · 2.22 KB
/
kyc.vue
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
95
96
97
<template>
<div id="wrapper">
<div class="container page">
<h1 class="page-header">LandLord</h1>
<h2 class="page-subheader">Step 1: Create Profile</h2>
<form class="sponsor-form">
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" name="name" value="Dan Builder, Inc" />
</div>
<div class="form-group">
<label for="industry">Landsize</label>
<input type="text" class="form-control" name="industry" value="Construction" />
</div>
<div class="form-group">
<label for="address">Street Address</label>
<input type="text" class="form-control" name="address" value="11 Jurong Ave" />
</div>
<div class="form-group">
<label for="city">City</label>
<input type="text" class="form-control" name="city" value="Jurong" />
</div>
<div class="form-group">
<label for="phone">Phone</label>
<input type="text" class="form-control" name="phone" value="01165-456-9898" />
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="text" class="form-control" name="email" value="hr@danbuilder.com" />
</div>
<button onclick="NewTab()" class="btn btn-primary float-right">Next</button>
</form>
</div>
<Footer></Footer>
</div>
</template>
<script>
export default {
name: 'LandLord',
data() {
return {
};
},
methods: {
nextPage: function (event) {
this.$router.push("/landposting");
}
}
}
function NewTab() {
window.open(
"https://srinivasteja15.github.io/kyc2/", "_blank");
}
</script>
<style scoped>
.page-header {
margin-bottom: 0.5em;
}
.page-subheader {
margin-bottom: 3em;
}
.sponsor-form {
margin: 0 auto;
margin-top: -3em;
text-align: left;
width: 50%;
}
input[type='text'] {
border: 1px solid #DEDEDE;
}
input[type='number'] {
border: 1px solid #DEDEDE;
}
@media (max-width: 991px) {
.sponsor-form {
padding-bottom: 4em;
width: 100%;
}
}
@media (min-width: 992px) {
.worksponsorer-form {
padding-bottom: 4em;
width: 50%;
}
}
</style>