-
Notifications
You must be signed in to change notification settings - Fork 1
/
share.html
79 lines (65 loc) · 2.47 KB
/
share.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
<!DOCTYPE html>
<html ng-app="CardsApp">
<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="./materialize/css/materialize.css" media="screen,projection" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--Linking manifest-->
<link rel="manifest" href="/cards/manifest.json">
<title>Cards | Share Card</title>
</head>
<body ng-controller="CardsController">
<script type="text/javascript" src="./angular/angular.min.js"></script>
<!-- NAVBAR -->
<div class="row">
<div class="col s12">
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper yellow lighten-1">
<a href="#" class="black-text" style="font-size: 1.5em; padding-left:10px">Share Card</a>
<a href="./cards!.html" data-target="mobile-demo" class="left" style="padding-left: 10px"><i
class="large material-icons black-text">close</i></a>
</div>
</nav>
</div>
</div>
</div>
<!-- PAGE CONTENT-->
<div class="row">
<div class="col s12 " style="height:50%">
<ul class="collection">
<li class="collection-item">Public Sharing
<div class="secondary-content">
<div class="switch">
<label>
<input type="checkbox">
<span class="lever"></span>
</label>
</div>
</div>
<br>
<p>
This card will be viewable to everyone and creator's name will be shown
</p>
</li>
<li class="collection-item">
Private Sharing
<i class="material-icons secondary-content" style="padding-right: 20px" ng-click="share()">share</i>
<br>
<p>
Cards can be shared through any of your messengers !
</p>
</li>
</ul>
</div>
</div>
<!--JavaScript at end of body for optimized loading-->
<script type="text/javascript" src="./materialize/js/materialize.js"></script>
<script src="./main.js"></script>
<script src="./material_init.js"></script>
</body>
</html>