mirror of https://github.com/byecorps/id.git
50 lines
1.8 KiB
HTML
50 lines
1.8 KiB
HTML
|
|
<!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.0">
|
|
<title>your id // byecorps id</title>
|
|
<link rel="stylesheet" href="./styles/base.css">
|
|
<link rel="stylesheet" href="./styles/profile.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
|
|
<h1 class="center">Your <span class="bc-logo"><span class="weight1">Bye</span><span class="weight2">Corps</span><span class="weight3"> ID</span></span></h1>
|
|
|
|
<div class="flex flex-row flex-justify-center" style="gap: 10px">
|
|
<div class="card">
|
|
<div class="bc-font card-header">
|
|
<h1 class="bc-logo"><span class="weight1">Bye</span><span class="weight2">Corps</span><span class="weight3"> ID</span></h1>
|
|
</div>
|
|
<img class="avatar" src="https://avatars.githubusercontent.com/u/77801870?v=4" alt="">
|
|
<h2>Bye</h2>
|
|
<p><span class="bcid-container">BYE 1010</span></p>
|
|
</div>
|
|
|
|
<div class="settings" style="flex: 1">
|
|
<h2>Settings</h2>
|
|
|
|
<form class="flex flex-column" style="gap: 5px;" action="#">
|
|
<div class="input">
|
|
<label class="hasborder" for="name">Name</label>
|
|
<input type="text" name="name" id="name" value="Bye">
|
|
</div>
|
|
|
|
<div class="input">
|
|
<label class="hasborder" for="id">ID</label>
|
|
<input type="text" disabled name="id" id="id" value="BYE 1010">
|
|
</div>
|
|
|
|
<button type="submit" class="bc-btn-primary">Save</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|