-
Notifications
You must be signed in to change notification settings - Fork 1
/
profile.html
110 lines (98 loc) · 3.78 KB
/
profile.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Profile</title>
<link rel="icon" type="image/x-icon" href="Img/logo/PixelPlay.png" />
<link rel="stylesheet" type="text/css" href="Scss2/profile.css" />
<!-- <link rel="stylesheet" type="text/css" href="Scss/home.css" /> -->
<script src="https://kit.fontawesome.com/cb104e752f.js" crossorigin="anonymous"></script>
<style>
body {
font-family: 'robot', sans-serif;
color: #00ffb7;
display: flex;
justify-content: center;
background: #000000;
background: linear-gradient(rgba(0, 0, 0, 0.666), rgba(0, 0, 0, 0.605)), url(../Img/arcade-part/arcade-card/wp5496481-nier-automata-4k-desktop-wallpapers.jpg);
background-repeat: no-repeat, no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
}
@font-face {
font-family: "Starzone";
src: url("Font/starzone-scifi-game-font/Web-TT/Starzone.ttf") format("truetype"),
url("Font/starzone-scifi-game-font/OpenType-TT/Starzone.ttf") format("truetype"),
url("Font/starzone-scifi-game-font/OpenType-PS/Starzone.otf") format("opentype"),
url("Font/starzone-scifi-game-font/Web-PS/Starzone.otf") format("opentype");
}
@font-face {
font-family: "CustomFont1";
src: url("Font/oxstar-font/OpenType-TT/Oxstars-Regular.ttf");
}
@font-face {
font-family: "CustomFont2";
src: url("Font/oxstar-font/Web-TT/Oxstars-Regular.ttf");
}
</style>
</head>
<body>
<!-- <div class="card">
<a href="index.html" class="cont-btn"><button class="part-btn"><i class="fa-solid fa-house"></i> </button></a>
<form id="edit-form">
<h1>Profile Card</h1>
<div class="profile-pic">
<label class="-label" for="file" style="position: absolute;">
<span class="glyphicon glyphicon-camera"></span>
<span>Change Image</span>
</label>
<input id="file" type="file" onchange="loadFile(event)" />
<div class="img-wrap">
<img src="Img/event-part/event-back.jpg" id="output" />
</div>
</div>
<div class="field">
<label for="name">Name:</label>
<div class="username"></div>
</div>
<div class="field">
<label for="status">Status:</label>
<input id="status" type="text" placeholder="It's a nice day!" required />
</div>
<button class="sav-btn" type="submit" class="edit">Save</button>
</form> -->
<div class="card">
<a href="index.html" class="cont-btn"><button class="part-btn"><i class="fa-solid fa-house"></i></button></a>
<form id="edit-form">
<h1 class="p-c">Profile Card</h1>
<div class="profile-pic">
<label class="-label" for="file" style="position: absolute;">
<span class="glyphicon glyphicon-camera"></span>
<span>Change Image</span>
</label>
<input id="file" type="file" onchange="loadFile(event)" />
<div class="img-wrap">
<img src="Img/event-part/event-back.jpg" id="output" />
</div>
</div>
<div class="field">
<label for="name">Name:</label>
<div class="username"></div>
</div>
<div class="field">
<label for="status">Status:</label>
<input id="status" type="text" placeholder="your status" required />
</div>
<button class="sav-btn" type="submit" class="edit">Save</button>
<button class="logout-btn" type="button">Logout</button>
</form>
</div>
</div>
<script src="js/profile.js"></script>
<script>
</script>
</body>
</html>