You can create and override the file under the HttpApiHost project at /Pages/Account/Register.cshtml. There is documentation here: https://abp.io/docs/latest/framework/ui/mvc-razor-pages/customization-user-interface
Hello, could you share the version information and UI information of your project?
Hi, could you please check again?
Hello, a while ago there was an issue with our server, it has been fixed now. Could you please check again?
It should be fixed now, can you try again?
Hello, there is a problem with our server right now. We will fix it soon. I am refunding your ticket.
Hi, what type of rules are you trying to use the rule engine for? If they are complex rules, I recommend using https://github.com/microsoft/RulesEngine. If they are simpler rules, could you provide an example?
I'm closing this question as you haven't reported any other issues.
Hello, this situation is caused by PostgreSQL. You can follow the steps in this article.
Hi, abp-date-picker uses jquery, so if you replace your code as jquery code it will work.
document.addEventListener('DOMContentLoaded', function () {
const $vendorInvoiceDate = $('#vendorInvoiceDate');
const $documentDate = $('#documentDate');
$vendorInvoiceDate.on('change', function () {
$documentDate.val($vendorInvoiceDate.val());
});
});