-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCC.html
More file actions
131 lines (123 loc) · 6.19 KB
/
CC.html
File metadata and controls
131 lines (123 loc) · 6.19 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name ="viewsport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CCL PROJECT</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="CC.css">
<link rel="stylesheet" href="styles.css">
</head>
<body onload="render()">
<header>
<nav class="blue accent-4">
<div class="nav-wrapper">
<a href="CC.html" class="brand-logo m-1-2">
<i style="font-size: 3rem!important;"
class="material-icons">store</i>Samsung Store
</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li>
<a href="cart.html">
Shopping Cart <span id="cart_n"></span>
</a>
</li>
<li>
<a class="modal-trigger" href="#modal1">Admin</a>
</li>
</ul>
</div>
</nav>
</header>
<main role="main">
<div style="height: 600px!important;" class="carousel carousel-slider center">
<div class="carousel-fixed-item center">
<a class="btn waves-effect white grey-text darken-test-2">
button
</a>
</div>
<div class="carousel-item red white-text" >
<img style="height: 700px!important;" src="l-1.png" alt="">
</div>
<div class="carousel-item amber white-text">
<img style="height: 700px!important;" src="l-2.png" alt="">
</div>
<div class="carousel-item green white-text">
<img style="height: 700px!important;" src="l-3.png" alt="">
</div>
<div class="carousel-item blue white-text">
<img style="height: 700px!important;" src="l-4.png" alt="">
</div>
</div>
<div class="container">
<br>
<h2 id="mobile">Mobile</h2>
<hr>
<div class="row" id="mobileDIV"></div>
<h2 id="tablets">Tablet</h2>
<hr>
<div class="row" id="tabletDIV"></div>
<h2 id="watch">Watch</h2>
<hr>
<div class="row" id="watchDIV"></div>
<h2 id="galaxybud">GalaxyBud</h2>
<hr>
<div class="row" id="galaxybudDIV"></div>
<h2 id="tv">TV</h2>
<hr>
<div class="row" id="tvDIV"></div>
<hr class="featurette-divider">
</div>
<footer class="container">
<p class="container">
<a href="#">Top</a>
</p>
<div class="row">
CCL PROJECT
</div>
</footer>
</main>
<div id="modal1" class="modal">
<div class="modal-content">
<form onsubmit= "login()" id="formLogin" autocomplete="off" class="col s12">
<div class="row">
<div class="input-field col s12">
<i class="material-icons prefix">account_circle</i>
<input type="text" required id="userName"
class="validate">
<label for="icon_prefix">User</label>
</div>
<div class="input-field col s12">
<i class="material-icons prefix">
fingerprint
</i>
<input type="password" required id="userPassword"
class="validate" >
<label for="icon_prefix">Password</label>
</div>
<div class="input-field col s12">
<button class="btn waves-effect waves-light"
type="submit" name="action" >Submit
<i class="material-icons right">send</i>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="wow.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.4.6/dist/sweetalert2.all.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.8/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.6.8/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.8/firebase-database.js"></script>
<script src="CC.js"></script>
<script src="Login.js"></script>
</body>
</html>