Files
FACULTATE-LICENTA/User/src/renderer/html/profile.html
T

36 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="../assets/hard-disk.ico" type="image/x-icon">
<link rel="stylesheet" href="../css/profile.css">
<link rel="stylesheet" href="../css/transition.css">
<script src="../js/profile.js"></script>
<script src="../js/transition.js"></script>
<title>Profile</title>
</head>
<body onload="fadeIn()">
<div class="container">
<form id="profileForm" class="profile-form">
<div class="profile-form-title">
<h2>Profile</h2>
<hr>
</div>
<div class="profile-form-content">
<input type="email" name="email" placeholder="Email">
<input type="text" name="username" placeholder="Username">
<input type="password" name="password" placeholder="Password">
</div>
<div class="profile-form-footer">
<button type="button" name="login">Back</button>
<button type="submit" name="submit">Submit</button>
</div>
</form>
</div>
</body>
</html>