-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauthentication.html
More file actions
54 lines (49 loc) · 2.49 KB
/
authentication.html
File metadata and controls
54 lines (49 loc) · 2.49 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
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--@meta-info-->
<title></title>
<meta name="description" content="">
<meta name="keywords" content="">
<!--@stylesheet-->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/styles/app.css">
</head>
<body id="app">
<div class="container">
<div class="row">
<div class="col-lg-10 col-xl-9 mx-auto">
<div class="card card-signin flex-row my-5">
<div class="card-img-left d-none d-md-flex">
</div>
<div class="card-body">
<h2 class="text-center">Register</h2>
<form class="form-signin">
<input type="text" class="form-control" placeholder="Username" required autofocus>
<input type="email" class="form-control" placeholder="Email address" required>
<hr>
<input type="password" class="form-control" placeholder="Password" required>
<input type="password" class="form-control" placeholder="Password" required>
<button class="btn btn-lg btn-primary btn-block text-uppercase" type="submit">Register</button>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.7.5/angular.min.js"></script>
<script>
window.jQuery || document.write('<script src="assets/scripts/vendor/jquery-3.3.1.min.js"><\/script>');
window.angular || document.write('<script src="assets/scripts/vendor/angular-1.7.5.min.js"><\/script>')
</script>
<script src="assets/scripts/main.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
</body>
</html>