This repository has been archived by the owner on Jun 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathfeedback.html
59 lines (58 loc) · 2.73 KB
/
feedback.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
<!DOCTYPE html>
<html ng-app='glucosio'>
<head>
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css" />
<!-- import css -->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection" />
<link type="text/css" rel="stylesheet" href="css/layout.css" media="screen,projection" />
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body class="glucose_yellow">
<div class="container">
<div class="row">
<div class="col s6">
<img class="responsive-img" src="img/GlucosioHorizontalPink_rgb_600_158.png" alt="" />
</div><img class="responsive-img" src="img/Glucat_rgb_416_600.png" alt="" />
</div>
<!-- PAGE CONTENT -->
<div class="row">
<form class="col s12" novalidate>
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix">account_circle</i>
<input id="icon_prefix" type="text" class="validate" required>
<label for="icon_prefix">First Name</label>
</div>
<div class="input-field col s6">
<input id="last_name" type="text" class="validate" required>
<label for="last_name">Last Name</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<i class="material-icons prefix">mode_edit</i>
<textarea id="icon_prefix2" class="materialize-textarea" required></textarea>
<label for="icon_prefix2">Type your message here:</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix">email</i>
<input id="icon_prefix" type="text" class="validate" required>
<label for="icon_prefix">Email</label>
</div>
<div class="col s6">
<button class="btn btn-large waves-effect glucose_pink" type="submit" name="action">Submit
<i class="material-icons right">send</i>
</button>
</div>
</div>
</form>
</div>
</div>
<footer-content></footer-content>
</html>