summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/cook-page/cook-page.component.html
blob: 39bef2e1246e58f183187aacdd2de063b3427419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="container">
	<div class="previous">
		<h1>Step {{step -1}}</h1>
		<p>{{previousStep}}</p>
	</div>
	
	<div class="current">
		<h1>Step {{step}}</h1>
		<p>{{currentStep}}</p>
		<p>{{timeLeft}}</p>
		<div>
			<button (click)="startTimer()">Start Timer</button>
		</div>
		<button (click)="previous()">Previous</button>
		<button (click)="next()">next</button>
	</div>
	
	<div class="next">
		<h1>Step {{step +1}}</h1>
		<p>{{nextStep}}</p>
	</div>
</div>