Advertisement
Guest User

Untitled

a guest
Dec 15th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. import React, { Component } from 'react';
  2. import logo from './logo.svg';
  3. import './App.css';
  4.  
  5. import React from 'react'
  6. import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
  7.  
  8. class user_page extends Component {
  9. render() {
  10. return (
  11. <div className="App">
  12. <div className="container my-auto" >
  13.  
  14. <div className="row">
  15.  
  16. <div className="col-lg-8 mx-auto">
  17.  
  18. <FontAwesomeIcon icon="fa-user-circle" className="far fa-user-circle fa-5x mt-5 mb-3" style{{color: #6B6B6B}}></i>
  19.  
  20. <p></p>
  21. <p></p>
  22. <p></p>
  23.  
  24. <form className="mb-5">
  25.  
  26.  
  27. <div class="form-group">
  28. <label style={{font-family: Arial}} className="text-black-50">Nome de Utilizador</label>
  29. <input style={{background-color: #E5E3E3; border-radius: 15px; max-width: 300px; font-family: Arial}} type="text" className="form-control mx-auto" id="input_nome_pag_user" aria-describedby="emailHelp" placeholder="Nome" disabled>
  30. <small id="emailHelp" className="form-text text-muted"></small>
  31. </div>
  32.  
  33.  
  34. <div className="form-group">
  35. <label style={{font-family: Arial}} className="text-black-50">Nome Completo</label>
  36. <input style={{background-color: #E5E3E3; border-radius: 15px; max-width: 300px; font-family: Arial}} type="text" className="form-control mx-auto" id="input_username_pag_user" placeholder="Username" disabled >
  37. </div>
  38.  
  39.  
  40. <div class="form-group">
  41. <label style={{font-family: Arial}} className="text-black-50">Email</label>
  42. <input style={{background-color: #E5E3E3; border-radius: 15px; max-width: 300px; font-family: Arial}} type="email" className="form-control mx-auto" id="input_password_email_user" placeholder="Email" disabled >
  43. </div>
  44.  
  45.  
  46. <div class="form-group">
  47. <label style={{font-family: Arial}} className="text-black-50">Password</label>
  48. <input style{{background-color: #E5E3E3; border-radius: 15px; max-width: 300px; font-family: Arial}} type="text" className="form-control mx-auto" id="input_password_pag_user" placeholder="Password" disabled >
  49. </div>
  50.  
  51. <br>
  52.  
  53.  
  54. <button type="button" className="btn mx-auto" style={{background-color: #233656; border-color: #233656; color: white; margin: 5px; max-width: 200px}} id="btn_edit_dados_pag_user">Editar Dados</button>
  55.  
  56. <br>
  57.  
  58.  
  59. <button type="button" className="btn mx-auto" style={{background-color: #233656; border-color: #233656; color: white; margin: 5px; max-width: 200px}} id="btn_termina_sessao_pag_user">Terminar Sessão</button>
  60.  
  61. </form>
  62.  
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. );
  68. }
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement