How rewrite a template like `at_form.html`, found on `meteor-useraccounts:bootstrap`?

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??

Solved!!!
https://github.com/meteor-useraccounts/core/issues/300

Precisely right :sunny: