Advertisement
Guest User

Untitled

a guest
Jun 8th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.19 KB | None | 0 0
  1. <HTML>
  2.         <HEAD>
  3.             <title>My profile</title>
  4.             <link rel = "stylesheet" type = "text/css" href = "../../LoginERegistrazione/css/Estetica2.css">
  5.             <link rel = "stylesheet" type = "text/css" href = "../../LoginERegistrazione/css/style1.css">
  6.             <style>
  7.             .btn1 {
  8.                 background: #3498db;
  9.                 background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  10.                 background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  11.                 background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  12.                 background-image: -o-linear-gradient(top, #3498db, #2980b9);
  13.                 background-image: linear-gradient(to bottom, #3498db, #2980b9);
  14.                 -webkit-border-radius: 28;
  15.                 -moz-border-radius: 28;
  16.                 border-radius: 28px;
  17.                 font-family: Georgia;
  18.                 color: #ffffff;
  19.                 font-size: 1.0000em;
  20.                 margin-left: 37%;
  21.                 padding: 10px 20px 10px 20px;
  22.                 text-decoration: none;
  23.                 text-align: left;
  24.             }
  25.             .btn1:hover {
  26.                 background: #3b5998;
  27.                 background-image: -webkit-linear-gradient(top, #3b5998, #3b5998);
  28.                 background-image: -moz-linear-gradient(top, #3b5998, #3b5998);
  29.                 background-image: -ms-linear-gradient(top, #3b5998, #3b5998);
  30.                 background-image: -o-linear-gradient(top, #3b5998, #3b5998);
  31.                 background-image: linear-gradient(to bottom, #3b5998, #3b5998);
  32.                 text-decoration: none;
  33.             }
  34.             </style>
  35.         </HEAD>
  36.  
  37. <?php
  38.    
  39. ?>
  40.         <BODY>
  41.             <div class = "login-box">
  42.                 <img src= "../../LoginERegistrazione/Avatar_img/teacher_avatar.png" class = "avatar">
  43.                 <input type="file" enctpype= "multipart/form-data">
  44.                       <form action = "../php/modifyProfile.php" method = "post">
  45.                           <div style="clear:both"></div>
  46.        
  47.                         <div id = "left">
  48.                         <?php
  49.                         $test = 3;
  50.                        
  51.                         echo '<p> Nome: </p><input type = "text" name = "nome" placeholder = ' . $test . ' maxlength="30" autocomplete="nope"  required= "">'
  52.    
  53.                         ?>
  54.                            
  55.                             <p> Email attuale </p><input type = "text" name = "oldEmail" placeholder = "Inserisci la tua email attuale" maxlength="30" autocomplete="nope" required= "">
  56.                             <p>Materia: </p> <input type = "text"  placeholder='Materia che insegna' maxlenght='30' name = "Materia0" required=""  autocomplete="nope">
  57.                             <p>Password: </p><input type = "password" name = "password1" placeholder = "Password attuale" maxlength="30" autocomplete="nope" required= "">
  58.                             <br></br>
  59.                             <a href="../php/modifyProfile.php" class="btn1">Aggiorna</a>
  60.                             </div>
  61.                         <div id = "right">
  62.                
  63.                             <p> Cognome: </p> <?php echo '<input type="text" name="cognomea" placeholder= " ". $cognome)';?>
  64.                             <p>Nuova Email: </p><?php echo '<input type="text" name="newEmail" placeholder= " ". $email)';?>
  65.                             <p> Username: </p><input type = "text" name = "username" placeholder = "Inserisci username" maxlength="30" autocomplete="nope"  required= "">
  66.                             <p>Conferma password: </p><input type = "password" name = "password2" placeholder = "Nuova password" maxlength="30"  autocomplete="nope" required= "">
  67.                             <br></br>
  68.                             <a href="homepageInsegnante" class="btn1">Annulla</a>
  69.                         </div>
  70.                          <div class= "btnPosition">
  71.                                
  72.                                
  73.                                
  74.                             </div>            
  75.                     </form>
  76.                    
  77.                    
  78.         </BODY>
  79. </HTML>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement