Put the default meeting name inside the text box on the landing page.

This commit is contained in:
Maxim Khlobystov 2014-10-30 14:43:13 -07:00
parent 4d1bcf70da
commit 5786ce347d

View File

@ -9,10 +9,9 @@
<div ng-controller="MainCtrl">
<form ng-submit="postUsername()">
<label>Username:</label>
<input type="text" ng-model="username" placeholder="Enter a name here" required>
<input type="text" ng-model="username" placeholder="Enter Your Name" required>
<label>Meeting name:</label>
<input type="text" ng-model="meetingName" placeholder="Enter a meeting name">
<label>(e.x. Demo Meeting)</label><br/>
<input type="text" ng-model="meetingName" placeholder="Demo Meeting"><br/>
<input type="submit" value="Send"><br/><br/>
</form>
</div>