Skip to content

Instantly share code, notes, and snippets.

@acidsound
Last active August 23, 2023 08:12
Show Gist options
  • Save acidsound/ed3a2d2c21cd00540cc503e7843e5103 to your computer and use it in GitHub Desktop.
Save acidsound/ed3a2d2c21cd00540cc503e7843e5103 to your computer and use it in GitHub Desktop.
TleCSS LoginForm 예제
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="틀CSS/TLE 로그인 예제">
<meta charset="UTF-8">
<title>틀css</title>
<link rel="stylesheet" href="https://cdn.rawgit.com/acidsound/Tle-CSS/master/dist/tle.css">
</head>
<body>
<div class="한가운데" style="width: 30rem;">
<div id="로그인" class="틀">
<h2>Malibu Studio</h2>
<fieldset>
<div>
<label for="e-mail">e-mail</label>
<input id="e-mail" placeholder="john.doe@whereareyou.com" type="email">
<div id="e-mail-error"></div>
</div>
<div>
<label>password</label>
<input id="password" type="password" placeholder="a-z 6 letter">
<div id="password_error"></div>
</div>
<div class="떨어져">
<div class="오른쪽착">
<button>SignIn</button>
</div>
<div>
<button class="외곽선">SignUp</button>
</div>
</div>
<div>
<a href="#">you don't have an account yet?<br/> register here.</a>
</div>
</fieldset>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment