Hello.
I was trying to customize atForm template from meteor-useraccounts:bootstrap, basicaly change layout and nested template order.
Testing with a local package.
Package.describe({
summary: "Add external login providers. Change! keys per project",
version: "1.0.0",
name: "external-login-providers"
});
Package.onUse(function (api) {
api.use([
"accounts-google",
"accounts-facebook",
"accounts-twitter",
"service-configuration",
"useraccounts:bootstrap"
], ["client", "server"]);
api.use([
"less",
"templating"
], "client");
api.addFiles([
"lib/at_form.html",
"lib/at_bootstrap.less"
], ["client"]);
api.addFiles([
"server/accounts/config.js"
], ["server"]);
});
We this aproach I can change CSS on atForm whith custom at_bootstrap.less but I can“t rewrite/customize at_form.html.
What I do wrong??