This repository has been archived by the owner on Jul 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStepThree.html
56 lines (52 loc) · 1.89 KB
/
StepThree.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="bootstrap-3.1.1-dist/css/bootstrap.min.css" />
<script src="external_js/jquery-1.9.0.min.js"></script>
<link rel="stylesheet" href="Steps.css" />
<link href='http://fonts.googleapis.com/css?family=Changa+One' rel='stylesheet' type='text/css'>
<script src="Steps.js"></script>
</head>
<body>
<div class=container-fluid>
<div class="row">
<div class="col-md-3 left-side">
<div class="left-bar"></div>
</div>
<div class="col-md-6">
<div class="row statusbar-wrapper">
<div class="statusbar">
<div class="info-box personal-info-box info-box-on">Personal Information</div>
<div class="info-box smoking-info-box info-box-on">Smoking Information</div>
<div class="info-box goals-info-box info-box-on">Goals</div>
</div>
</div>
<div class="row user-input-section goals-form">
<div>
<form class="form-horizontal" role="form">
<div class="quit-goal-description">I want to quit because...</div>
<div class="form-group">
<div class="col-sm-10 col-md-offset-1">
<textarea class="form-control" id="reason" placeholder="i.e. “I want to set a good example for my kids.”"></textarea>
</div>
</div>
<div class="goal-character-count"></div>
</form>
</div>
</div>
<div class="row">
<button type="button" id="button3to2" class="btn btn-primary">
<span class="glyphicon glyphicon-chevron-left"></span>Back
</button>
<button type="button" id="buttonFinish" class="btn btn-primary">
Finish
</button>
</div>
</div>
<div class="col-md-3 right-side">
<div class="right-bar"></div>
</div>
</div>
</div>
</body>
</html>