29 lines
887 B
HTML
29 lines
887 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Vue 3 + Pinia - User Registration and Login Example & Tutorial</title>
|
|
|
|
<!-- bootstrap css -->
|
|
<link href="//netdna.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
|
|
<!-- credits -->
|
|
<div class="text-center mt-4">
|
|
<p>
|
|
<a href="https://jasonwatmore.com/post/2022/07/25/vue-3-pinia-user-registration-and-login-example-tutorial">Vue 3 + Pinia - User Registration and Login Example & Tutorial</a>
|
|
</p>
|
|
<p>
|
|
<a href="https://jasonwatmore.com">JasonWatmore.com</a>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |