-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthentication.html
145 lines (128 loc) · 5.38 KB
/
authentication.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<meta name="google-signin-client_id" content="740301413940-qkcmcsfrjjfrtva0fld85ondk4r9poat.apps.googleusercontent.com">
<script src="./scripts/fbs.js"></script>
<script src="./scripts/ggs.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!--font awesome script-->
<script src="https://kit.fontawesome.com/bcbd543404.js" crossorigin="anonymous"></script>
<!-- Bootstrap cdn link-->
<!--Bootstrap script-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js " integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4 " crossorigin="anonymous "></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js " integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p " crossorigin="anonymous "></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js " integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT " crossorigin="anonymous "></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<!--Material.io links-->
<link href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css" rel="stylesheet">
<script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
<!--google fonts-->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<!--CSS-->
<link rel="stylesheet" href="css/authetication.css">
<meta name="viewport" media content="width=device-width, initial-scale=1.0">
<title></title>
<style>
.container {
margin: auto;
position: relative;
top: 80px;
width: 400px;
height: 640px;
}
</style>
</head>
<style type="text/css">
#customBtn {
border-radius: 50%;
background-color: white;
font-size: 25px;
width: 60px;
height: 60px;
margin: auto;
position: relative;
left: 50%;
transform: translateX(-50%);
color: #1381a2;
outline: none;
font-family: Arial, Helvetica, sans-serif;
}
#customBtn:hover {
cursor: pointer;
}
span.label {
font-family: serif;
font-weight: normal;
}
span.buttonText {
display: inline-block;
vertical-align: middle;
padding-top: 10px;
padding-left: 20px;
font-size: 25px;
font-weight: bold;
/* Use the Roboto font that is loaded in the <head> */
font-family: 'Roboto', sans-serif;
}
</style>
<body>
<div class="container">
<div class="row">
<div class="col-12"><br></div>
<div class="col-12"><br></div>
<div class="col-12"><br></div>
<div class="col-12"><br></div>
<div class="col-4"></div>
<div class="col-4">
<img class="img-fluid" src="icons/logo2.png">
</div>
<div class="col-4"></div>
<div class="col-12"><br></div>
<div class="col-12"><br></div>
<div class="col-12">
<p class="login-w-num">Log in with your phone number</p>
</div>
<div class="col-12">
<input class="numberInput" placeholder="09xxxxxxxxx">
</div>
<div class="col-12">
<button class="btn shadow-none log-in-btn">LOG IN</button>
</div>
<div class="col-12"><br></div>
<div class="col-12"><br></div>
<div class="col-12"><br></div>
<div class="col-4">
<hr style="color: white;">
</div>
<div class="col-4 or">
OR LOG IN WITH
</div>
<div class="col-4">
<hr style="color: white;">
</div>
<div class="col-12"><br></div>
<div class="col-12"><br></div>
<div class="col-3"></div>
<div class="col-3">
<!--onclick na ba to? para iredirect sa Oauth ni fb?-->
<button class="btn fb shadow-none" onclick="log()" style="font-weight: bold;font-size:30px;">f</button>
</div>
<div class="col-3">
<div id="gSignInWrapper">
<div id="customBtn" class="customGPlusSignIn">
<span class="icon"></span>
<span class="buttonText">G</span>
</div>
</div>
<script>
startApp();
</script>
</div>
<!-- Load the JS SDK asynchronously -->
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js"></script>
<div class="col-3"></div>
</div>
</div>
</body>
</html>