-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (45 loc) · 1.97 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LoveBox | Love Percentage</title>
<meta name="title" content="LoveBox | Perfect Predictions">
<meta name="description" content="Love Percentage Calculator">
<meta name="author" content="Ankit Verma">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Niconne" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Aref+Ruqaa" rel="stylesheet">
<script src="script.js"></script>
<script src="controller.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body ng-app="loveCalculator" ng-controller="loveCtrl">
<canvas id="canvas"></canvas>
<h1>Love Percentage</h1>
<div class="container">
<div class="form-group">
<label>Your Name:</label>
<form>
<input type="text" class="form-control" placeholder="Enter Your First Name.." ng-model="myName" required>
</div>
<div class="form-group">
<label>Crush Bf/Gf Name:</label>
<input type="text" class="form-control" placeholder="Enter Crush/Bf/Gf First Name.." ng-model="crushName" required>
</div>
<button class="btn btn-success" ng-click="calculate()">Calculate</button>
</form>
<div class="percent">
<div id="count">0</div>
<p>%</p>
</div>
</div>
<div class="name" ng-show="name">
<p class="mecrush" ng-model="me">{{me|uppercase}} </p>
<img class="heart" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/heart2.svg">
<p class="mecrush" ng-model="crush"> {{crush|uppercase}}</p>
</div>
</body>
</html>