loginPractice.html<head> <title>loginPractice</title> </head> <body> {{> hello}}</body> <template name="hello"> {{> loginButtons}} <h1>Hello World!</h1> {{greeting}} <input type="button" value="Click" /></template>
loginPractice.html
<head>
<title>loginPractice</title>
</head>
<body>
{{> hello}}
</body>
<template name="hello">
{{> loginButtons}}
<h1>Hello World!</h1>
{{greeting}}
<input type="button" value="Click" />
</template>
By Lee Jaeho
Meteor에서 사용자 등록/인증을 어떻게 하는지 배워봅시다.