-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
1 lines (1 loc) · 900 Bytes
/
home.html
1
<div class="container"><h1>Hangman</h1><div><p>To begin type your guess below.</p></div><div ng-controller="GameCtrl" class="game"><div class="letters"><div ng-repeat="letter in letters track by $index" my-word-directive="my-word-directive" flip-toggle="true" class="step"><div class="flippy-front front">?</div><div ng-bind="letter" class="flippy-back back"></div></div></div><div ng-controller="GuessCtrl" class="input-group"><input type="text" maxlength="1" value="?" autofocus="autofocus" ng-model="guess.letter" my-guess-directive="my-guess-directive" class="guess"/></div><div ng-controller="AlphabetCtrl"><span ng-repeat="char in alphabet" my-alphabet-directive="my-alphabet-directive" class="alphabet">{{char}}</span></div><div ng-controller="DeadManCtrl" class="dead-man"><div my-deadman-directive="my-deadman-directive" class="body-parts"><div class="deadman"></div></div></div></div></div>