-
-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTML Forms? #471
Comments
And what would you do with forms? There's no back-end to apply this? Your best bet is UniversalDashboard |
There are some nice backends with powershell like pode. Unfortunately pode.web is in alpha status and had many bugs. UniversalDashboard is not open source and if you want Kerberos auth you have to pay. Pode with pswritehtml is a really good combo to create nice dashboards. I have some good examples with it and dynamic dashboards with sql datastore. |
Right, I have once tried to use Pode, so I am not sure what you can really do with it. I would need to see some code to understand how one could utilize it, as at the moment I have no clue how to connect 1 and the other. Adding forms, or telling datatables to get data from SQL is one thing, but the other is how to really use it. I started building a C# version of PSWriteHTML: Which I guess would be more useful, but it's not as complete. |
I would use it to create forms to perform administrative tasks.
some basic code to integrate: ` Start-PodeServer { Add-PodeRoute -Method Get -Path '/pswritehtml' -Authentication 'IISAuth' -ScriptBlock {
} } ` but I can understand if you don't want to use forms. With pode and pswritehtml together, the possibilities would be endless in my opinion. |
There3 are plenty of available options: To try and, based on that, create something of my own. I guess I'm just not sure how to bind it to pode properly |
Would be nice that pswritehtml get some form methods to create easy html pages with form validation.
Up to now I don’t find any powershell modules for this.
The text was updated successfully, but these errors were encountered: