-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontinue.html
More file actions
77 lines (59 loc) · 2.75 KB
/
continue.html
File metadata and controls
77 lines (59 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digital Cards by ISCE</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.0.2/tailwind.min.css">
<link rel="stylesheet" href="https://unpkg.com/flowbite@1.3.4/dist/flowbite.min.css" />
<style>
.feature-cards{
background-color: #0D0221;
color: white;
}
.feature-cards > h4{
color: white;
}
.svgdiv{
color: #0D0221;
background-color: white;
}
</style>
<script src="https://use.fontawesome.com/fd959d8b36.js"></script>
</head>
<body style="height: 100vh; background-color: #0D0221;">
<!-- Navigation Starts Here -->
<nav class="px-2 sm:px-4 py-2.5" style="background-color: white;">
<div class="container flex flex-wrap justify-between items-center mx-auto px-5 py-3">
<a href="index.html" class="flex items-center">
<!-- <img src="" class="mr-3 h-6 sm:h-10" alt="Isce Logo"> -->
<span class="self-center text-xl font-semibold whitespace-nowrap">iSCE Cards</span>
</a>
<div class="flex items-center md:order-2">
<a href="">
<span class="">Exit</span>
</a>
</div>
</div>
</nav>
<!-- Navigation Ends Here -->
<!-- Main Contents Go Here -->
<div class="py-12" style="margin-top: 200px;">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="">
<h2 class="text-base text-white font-semibold tracking-wide uppercase text-center">Continue As</h2>
<div class="mt-4 space-x-3 lg:mt-6 text-center">
<a href="signup.html" class="inline-flex items-center py-2 px-4 text-sm font-medium text-center text-white bg-blue-700 rounded-lg hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">New User</a>
<a href="signin.html" class="inline-flex items-center py-2 px-4 text-sm font-medium text-center text-gray-900 bg-white rounded-lg border border-gray-300 hover:bg-gray-100 focus:ring-4 focus:ring-blue-300 dark:bg-gray-800 dark:text-white dark:border-gray-600 dark:hover:bg-gray-700 dark:hover:border-gray-700 dark:focus:ring-gray-800">Existing User</a>
</div>
</div>
</div>
</div>
<!-- Main Contents End Here -->
<!-- AlpineJS Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/alpinejs/2.8.0/alpine.js"></script>
<script src="https://unpkg.com/flowbite@1.3.4/dist/flowbite.js"></script>
<script>
</script>
</body>
</html>