Editor

Editor #

Use below insert to design the interface of your application in HTML :


In the insert below, replace the content of the BODY constant with the content created above. Add the desired features and click Run to launch the application.

Please take a look to at this notes about the use of async/await.

import atlastk

BODY = """
<center>
<h5>Replace this with the HTML code corresponding to your interface.</h5>
</center>
"""

async def atk(dom):
  await dom.inner("", BODY)

atlastk.launch(globals=globals())