Created
June 5, 2017 18:50
-
-
Save FrnandMG/5cf0f63fec5aa0ed456483154be11de0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row-fluid"> | |
<div class="{{user.provider === 'password'? 'col-md-4' : 'col-md-12'}}"> | |
<h3>Account</h3> | |
<form role="form"> | |
<p class="form-group"> | |
<label>Cuenta ID</label> | |
<br />{{user.uid}} | |
</p> | |
<p class="form-group"> | |
<label>Imagen:</label> | |
<img ng-src="{{ userinfo.password.profileImageURL}}"/> | |
</p> | |
<p class="form-group"> | |
<label>Nombres:</label> | |
<input type="text" name="name" ng-model="userinfo.nombres" class="form-control" /> | |
</p> | |
<p class="form-group"> | |
<label>Apellidos:</label> | |
<input type="text" name="name" ng-model="userinfo.apellidos" class="form-control" /> | |
</p> | |
<p class="form-group"> | |
<label>Email:</label> | |
<br />{{ userinfo.password.email }} | |
</p> | |
</form> | |
<p> | |
<button role="button" ng-click="save()" class="btn btn-info">Guardar</button> | |
</p> | |
<p> | |
<button role="button" ng-click="logout()" class="btn btn-danger">Log Out</button> | |
</p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment