-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExchangePoint.html
More file actions
31 lines (26 loc) · 954 Bytes
/
ExchangePoint.html
File metadata and controls
31 lines (26 loc) · 954 Bytes
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
<doctype>
<html ng-app = "ExchangePoint">
<head>
<title>ExchangePoint</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body ng-controller ="MainController">
<form ng-submit="update()">
<div class = "form-group">
<label for = "name"> Name </label>
<input ng-model ="profile.name" id = "name" type = "text"></input>
</div>
<label for = "languages"> Languages</label>
<select ng-model = "profile.language" id = "languages">
<option value = "english">English</option>
<option value = "spanish">Spanish</option>
<option value = "french">French</option>
</select>
<input type = "submit" ng-click = "update()" value = "Find someone!"></input>
</form>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<script src = "app.js"></script>
</body>
<footer></footer>
</html>