forked from SinYeongJoo/BigDataApplication
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJoin.php
More file actions
115 lines (114 loc) · 3.1 KB
/
Join.php
File metadata and controls
115 lines (114 loc) · 3.1 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<style type="text/css">
.login_box{
position: absolute;
display: flex;
height: 470px;
width: 440px;
background-color: white;
border: solid 1px #DDDDDD;
border-radius: 10px;
top:55%;
left:36%;
margin-top:-180px;
}
.logo_button {
width: 55px;
position:absolute;
top:18px;
left:8%;
}
.analysis_button {
width: 40px;
position:absolute;
top:20px;
right:150px;
}
.login_button {
height: 40px;
width: 40px;
position:absolute;
top:20px;
right:90px;
}
#email_pw_text{
margin-left:10px;
margin-top:15px;
margin-bottom: 5px;
font-size:20px;
font-weight: bold;
margin-left: 40px;
}
.email_pw_input{
height: 45px;
width: 355px;
margin-top:10px;
border: solid 1px gray;
border-radius: 5px;
margin-left: 40px;
}
.login{
margin-top: 35px;
width: 360px;
height: 57px;
font-size: 18px;
background-color: teal;
border: solid 1px teal;
border-radius: 5px;
margin-left: 40px;
font-weight: bolder;
color: white;
}
.welcome_div{
position: absolute;
text-align: center;
height: 80px;
width: 440px;
top:17%;
left:36%;
font-size: 1.5em;
font-weight: bolder;
}
</style>
<body>
<input class = "logo_button" type="image" src="images/logo_3.png" onclick="location.href='Main.php'">
<input class = "login_button" type="image" src="images/person.png" onclick="location.href='Login.php'">
<input class = "analysis_button" type="image" src = "images/analysis.png" onclick="location.href='Analysis_1.php'">
<hr style="width: 100%; color: gray; margin-top: 70px;"/>
<div class = "welcome_div">
<p>Create NaviLatte account</p>
</div>
<div class="login_box">
<form method="POST" action="Join_back.php">
<p id = "email_pw_text">Please write your name</p>
<input type="text" class="email_pw_input" id="ex4-name-input" name="username" placeholder="Please write your name"/>
<p id = "email_pw_text">Please write your E-mail</p>
<input type="text" class="email_pw_input" id="ex4-email-input" name="email" placeholder="Please write your E-mail"/>
<p id = "email_pw_text">Please write your password</p>
<input type="password" class="email_pw_input" id="ex4-pw-input" name="password" placeholder="Please write your password"/>
<input type="submit" value="Join" class="login">
<br><br>
<a href = "Login.php" style = "font-size: 18px; padding-left: 80px; color: #777777;
text-decoration: none;">Already have an account? Sign-In</a>
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript">
(function cleanText($) {
var $pw = $('#ex4-email-input, #ex4-pw-input, #ex4-name-input')
$pw.on('click focus', function() {
$(this).siblings('label').hide()
});
$pw.on('blur', function() {
$this = $(this)
if ($.trim($this.val()).length === 0) {
$this.siblings('label').show()
}
});
})(jQuery);
</script>
</body>
</html>